protected void save() { data.name = nameField.getText(); try { costField.commitEdit(); data.cost = ((Long) costField.getValue()).intValue(); } catch (ParseException e) { data.cost = 0; } data.color = colorBox.getSelectedItem().toString(); data.text = charField.getText(); data.weight = Float.parseFloat(weightField.getText()); if (spellBox.getSelectedItem() != null) { data.spell = spellBox.getSelectedItem().toString(); } data.setPath(Editor.getStore().getActive().get("id")); }
public static JLabel getCraftingCostHelpLabel() { return getLabel( "The cost to craft this item (in " + Editor.getStore().getActive().get("small") + ")."); }
public static JLabel getCostHelpLabel() { return getLabel("The cost of this item in " + Editor.getStore().getActive().get("small") + "."); }