我想这是一个真正的新手问题,但我无法在我的java书或其他地方找到任何答案。
我正在尝试使用Swing构建GUI,我可以在其中注册不同种类的葡萄酒。我想要我的葡萄酒级(将有一个葡萄酒超级班和三个子类:红色,白色和玫瑰色),包括一些字符串和整数(名称,年份等)和一堆物体,如乡村,区,房子等等。
我从JPanel创建wine对象,现在由名称this.angularSensibility = 5000;
camera = new BABYLON.FreeCamera("FreeCamera", new BABYLON.Vector3(-0.6, -5, -20), scene);
camera.keysUp = [84]; // T
camera.keysDown = [66]; // B
camera.keysLeft = [70]; // F
camera.keysRight = [72]; // H
camera.angularSensibility = this.angularSensibility;
camera.attachControl(canvas, true);
和国家JTextArea
组成,我使用for循环填充我的组合框,从中收集名称变量存储在arraylist中的对象国家/地区。
这是玫瑰酒的形式,其他的看起来也差不多。
JComboBox
以下是将用户发送到表单的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;
}
}
调用String
,以便我可以使用变量{创建我的wine对象{1}}和countryName
?
希望你能理解那里有一些瑞典语。
答案 0 :(得分:1)
您不需要像现在这样只添加国家/地区名称,而是需要添加国家/地区对象,这样就可以了:
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) {
//This does the trick
countryBox.addItem(c);
}
add(line2);
}
然后在你的班级"国家"你需要覆盖" toString"方法,我相信你做得很好,最好格式化代码,使其更具可读性。
public class Country {
private String countryName;
//Constructor, getters and setters
@Override
public String toString() {
return this.countryName;
}
}
无论何时你想获得你选择的国家/地区对象,你都可以:
Country selectedCountry = (Country) countryBox.getSelectedItem();
获取您希望实施的功能所需的ID,名称或任何其他属性。
希望它有所帮助。
答案 1 :(得分:0)
我相信你正在寻找DefaultComboBoxModel
类,因为这允许你动态地为它分配对象。然后在国家/地区,您需要@Override
toString()
函数返回countryName
,这样当DefaultComboBoxModel
对象推送到组合框时它将显示名称但它将返回对象如果这是有道理的。为了将您创建的模型设置到JPanel,您可以使用countryBox.setModel(<name of DefaultComboBoxModel>)
。