link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -0,0 +1,7 @@
package com.tridium.eas.ui.widgets;
public interface DbObjectValidator {
boolean allowLoadUserObject(Class cls);
boolean allowShowUserObject(Object obj);
}
@@ -0,0 +1,11 @@
package com.tridium.eas.ui.widgets;
public interface EasDataListener {
void dataChanged(DataEditedEvent dataEditedEvent);
void dataInserted(DataEditedEvent dataEditedEvent);
void dataRemoved(DataEditedEvent dataEditedEvent);
void dataToBeRemoved(DataEditedEvent dataEditedEvent);
}
@@ -0,0 +1,5 @@
package com.tridium.eas.ui.widgets;
public interface FilterTreePopupHandler {
void openPopup(FilterTree filterTree, FilterTreeNode filterTreeNode, int i, int i2);
}
@@ -0,0 +1,5 @@
package com.tridium.eas.ui.widgets;
public interface ListPopupHandler {
void openPopup(Object obj, int i, int i2, int i3);
}
@@ -0,0 +1,11 @@
package com.tridium.eas.ui.widgets;
import javax.swing.table.TableModel;
public interface RowMappedTableModel extends TableModel {
Object getModelValueAt(int i, int i2);
RowModel getRowModel();
void setRowModel(RowModel rowModel);
}
@@ -0,0 +1,7 @@
package com.tridium.eas.ui.widgets;
public interface RowModel {
int convertRowIndexToModel(int i);
int convertRowIndexToView(int i);
}
@@ -0,0 +1,5 @@
package com.tridium.eas.ui.widgets;
public interface TextCellListener {
void textCellChanged(TextCellEvent textCellEvent);
}