我想這是一個真正的新手問題,但我無法在這裏找到任何答案,在我的java書或其他地方。從JComboBox返回對象
我想用Swing構建一個GUI,我可以註冊不同種類的酒。我想要我的葡萄酒類(將有一個葡萄酒超級類和三個子類:紅色,白色和玫瑰)包含一些字符串和整數(名稱,年份等)和一堆對象,如國家,地區,房子和更多。
我創建了葡萄酒對象從一個JPanel現在由JTextArea
的名稱,併爲國家JComboBox
的,我用一個for循環,從一個儲存在一個對象國收集名稱變量填充我的組合框數組列表。
這是我玫瑰酒的形式,其他人看起來也一樣。
class RoseWineForm extends JPanel {
private JTextField wineName = new JTextField(15);
private JComboBox countryBox = new JComboBox();
public RoseWineForm() {
JPanel line1 = new JPanel();
setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
line1.add(new JLabel("Namn: "));
line1.add(wineName);
add(line1);
JPanel line2 = new JPanel();
line2.add(new JLabel("Ursprungsland"));
line2.add(countryBox);
for(Country c : listOfCountries) {
countryBox.addItem(c.getCountryName());
}
add(line2);
}
public String getName() {
return wineName.getText();
}
public Country getCountry() {
return ;
}}
這裏是將用戶的形式ActionListener
class NewWineListener implements ActionListener {
public void actionPerformed (ActionEvent a) {
try {
JComboBox wineColor = (JComboBox) a.getSource();
if (wineColor.getSelectedIndex() == 0) {
RedWineForm red = new RedWineForm();
int answer = JOptionPane.showConfirmDialog(TestVin.this, red, "Nytt rött vin",
JOptionPane.OK_CANCEL_OPTION);
} else if (wineColor.getSelectedIndex() == 1) {
WhiteWineForm white = new WhiteWineForm();
int answer = JOptionPane.showConfirmDialog(TestVin.this, white, "Nytt vitt vin",
JOptionPane.OK_CANCEL_OPTION);
} else {
RoseWineForm rose = new RoseWineForm();
int answer = JOptionPane.showConfirmDialog(TestVin.this, rose, "Nytt rosé vin",
JOptionPane.OK_CANCEL_OPTION);
}
} catch (NumberFormatException e) {
JOptionPane.showMessageDialog(TestVin.this, "Fel inmatning!");
}
}
這裏是我的祖國類:
public class Country {
private String countryName;
public Country(String countryName) {
this.countryName = countryName;
}
public String getCountryName() {
return countryName;
}
public void setCountryName(String newCountryName) {
if (newCountryName == null || newCountryName.trim().isEmpty()) {
System.out.println("You have to set a name.");
} else {
countryName = newCountryName;
}}
public String toString() {
return countryName;
}
}
我的問題是:當我選擇在這個國家的名字我的組合框如何返回對象,而不僅僅是名爲countryName
的String
,以便我可以使用變量String name
創建我的酒對象d Country country
?
希望你能理解那裏有一些瑞典人。
源代碼中的單個空白空白行是所有* *所需的。 '{'之後或'}'之前的空行通常也是多餘的。 –