I'm implementing a timetable for a scholar use.
I'd like to have a String []
object that has ALL the subjects erogated in a week.
I thinked to append every String [] dailySubjects
(that I have) to aString []
object (that we can call weekSubjects
).
In logical plan it's simple to see. But I've tried to implement and I'm having no results.
How can I do? there is not an add
method for String[]
. That method would make all easier.
By the way,
My code
public Class getWeekSubjects () {
public getWeekSubjects () {
//this is a String [] composed by all the subject in a day
String dailySubjects [] = new timetable().getDailySubjects;
}
}