Search in sources :

Example 1 with G_List

use of main.swing.generic.components.list.G_List in project Eidolons by IDemiurge.

the class FormulaBuilder method initParamTab.

private void initParamTab() {
    Collection<PARAMETER> data = ContentManager.getParamList();
    G_List<PARAMETER> c = new G_List<>(data);
    G_Panel panel = new G_Panel();
    panel.add(c, "pos 0 0");
    String title = PARAMS;
    tabs.addTab(c, title, null);
}
Also used : G_List(main.swing.generic.components.list.G_List) G_Panel(main.swing.generic.components.G_Panel) PARAMETER(main.content.values.parameters.PARAMETER)

Aggregations

PARAMETER (main.content.values.parameters.PARAMETER)1 G_Panel (main.swing.generic.components.G_Panel)1 G_List (main.swing.generic.components.list.G_List)1