* of the combo box changes depending on the currently selected album.
*/
public ComboBoxModel doFillTitleItems(@QueryParameter int album) {
switch (album) {
case 1:
return new ComboBoxModel("Yellow Submarine","Only a Northern Song","All You Need Is Love");
case 2:
return new ComboBoxModel("Come Together","Something","I Want You");
case 3:
return new ComboBoxModel("The One After 909","Rocker","Get Back");
default:
// if no value is selected in the album, we'll get 0
return new ComboBoxModel();
}
}