link start!
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user