?? enumcombo.java
字號:
/** @version 1.12 2004-09-15 @author Cay Horstmann*/import java.util.*;import javax.swing.*;/** A combo box that lets users choose from among static field values whose names are given in the constructor.*/public class EnumCombo extends JComboBox{ /** Constructs an EnumCombo. @param cl a class @param labels an array of static field names of cl */ public EnumCombo(Class cl, String[] labels) { for (int i = 0; i < labels.length; i++) { String label = labels[i]; String name = label.toUpperCase().replace(' ', '_'); int value = 0; try { java.lang.reflect.Field f = cl.getField(name); value = f.getInt(cl); } catch (Exception e) { label = "(" + label + ")"; } table.put(label, value); addItem(label); } setSelectedItem(labels[0]); } /** Returns the value of the field that the user selected. @return the static field value */ public int getValue() { return table.get(getSelectedItem()); } private Map<String, Integer> table = new TreeMap<String, Integer>();}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -