191192193194195196197198199
* * @return net.sf.orexio.common.ui.PropertiesTable */ private PropertiesTable getPropertiesTable() { if (propertiesTable == null) { propertiesTable = new PropertiesTable(new Properties()); } return propertiesTable; }
101112131415
public class PropertiesTable extends JTable { private static final long serialVersionUID = 1L; public PropertiesTable(){super(new PropertiesTableModel(new Properties()));}