use of main.utilities.sorting.TypeSorter.SORT_BY in project Eidolons by IDemiurge.
the class SortBox method initComp.
public void initComp() {
comp = new G_Panel();
JLabel lbl = new JLabel(TEXT);
comp.add(lbl);
initItems();
JComboBox<SORT_BY> dropbox = new JComboBox<>(items);
dropbox.addActionListener(this);
comp.add(dropbox, "");
}