Hi Guys,
i am currently working on a project and would just like to add a bit more to it then needs be and also as I would liek to learn how to do it.
Basically I have 3 classes at the moment
CD ----> Artist ----> Concert
what my plan was, is to add a public drop down menu to the Concert class that would allow me / the user to select the venue from the concert to one from the list and this would pop up when the constructor was 1st run.
and then for this to change the current field "venue" to one from the drop down list although I have that bit already in mind as it wont be that hard.
Sorry if there is not enough info just gve me a shout and I will put up what I have already.
Thanks
websey
... Oh and another thing is there any way to do a return statement on the same line for 2 fields
as this doesnt seem to work
Code :public String getDetails() { return name, venue; }
and nor does this
Code :public String getDetails() { return name, return venue; }
