link start!
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package com.tridium.eas.ui.dbconfig;
|
||||
|
||||
public interface DbConfigNavigator {
|
||||
void navigateGroup(long j);
|
||||
|
||||
void navigateSite(long j);
|
||||
|
||||
void navigateTo(Object obj);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.tridium.eas.ui.dbconfig;
|
||||
|
||||
import java.util.EventObject;
|
||||
|
||||
public interface EasEditorListener {
|
||||
void editingCancelled(EventObject eventObject);
|
||||
|
||||
void editingDeleted(EventObject eventObject);
|
||||
|
||||
void editingStarted(EventObject eventObject);
|
||||
|
||||
void editingStopped(EventObject eventObject);
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.tridium.eas.ui.dbconfig;
|
||||
|
||||
import com.tridium.eas.api.Group;
|
||||
|
||||
public interface GroupEditor {
|
||||
void addEasEditorListener(EasEditorListener easEditorListener);
|
||||
|
||||
void cancelGroupEditing();
|
||||
|
||||
Group getGroupEditorValue();
|
||||
|
||||
void removeEasEditorListener(EasEditorListener easEditorListener);
|
||||
|
||||
void setGroupEditorValue(Group group);
|
||||
|
||||
void startGroupEditing();
|
||||
|
||||
boolean stopGroupEditing(boolean z);
|
||||
}
|
||||
Reference in New Issue
Block a user