link start!
@@ -0,0 +1,9 @@
|
||||
package com.tridium.eas.ui;
|
||||
|
||||
public interface NavigationManager {
|
||||
void open(String str);
|
||||
|
||||
void open(String str, String str2);
|
||||
|
||||
void open(byte[] bArr, String str, String str2, String str3);
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
package com.tridium.eas.ui;
|
||||
|
||||
import java.awt.Image;
|
||||
|
||||
public interface ResourceManager {
|
||||
public static final int ARROW_DOWN_ICON = 315;
|
||||
public static final int ARROW_UP_ICON = 314;
|
||||
public static final int COMBO_FEE_ICON = 301;
|
||||
public static final int COMPOSITE_RATE_SCHEDULE_ICON = 308;
|
||||
public static final int DATA_POINT_ICON = 10;
|
||||
public static final int DELETE_ICON = 16;
|
||||
public static final int DEMAND_CHARGE_ICON = 302;
|
||||
public static final int END_TIME_ICON = 313;
|
||||
public static final int FILTER_ICON = 311;
|
||||
public static final int FLAT_FEE_ICON = 303;
|
||||
public static final int FLAT_FEE_PER_UNIT_ICON = 304;
|
||||
public static final int FUNCTION_ICON = 27;
|
||||
public static final int GRID_ICON = 21;
|
||||
public static final int HELP_ICON = 30;
|
||||
public static final int HISTORICAL_RATCHET_ICON = 316;
|
||||
public static final int HOME_ICON = 23;
|
||||
public static final int ICON_SEPARATOR = -1;
|
||||
public static final int INTERSECTION_RATE_SCHEDULE_ICON = 309;
|
||||
public static final int METER_ICON = 26;
|
||||
public static final int NEW_ICON = 29;
|
||||
public static final int PARTITION_ICON = 41;
|
||||
public static final int PRINT_ICON = 28;
|
||||
public static final int PROPERTY_ICON = 13;
|
||||
public static final int RATCHET_ICON = 305;
|
||||
public static final int RATE_ICON = 306;
|
||||
public static final int RATE_SCHEDULE_ICON = 307;
|
||||
public static final int RELOAD_ICON = 17;
|
||||
public static final int SAVE_ICON = 18;
|
||||
public static final int SHORTCUT_ICON = 14;
|
||||
public static final int SITE_ICON = 7;
|
||||
public static final int START_TIME_ICON = 312;
|
||||
public static final int STATIC_GROUP_ICON = 4;
|
||||
public static final int STATION_ICON = 1;
|
||||
public static final int TABLE_ICON = 22;
|
||||
public static final int TREE_ICON = 19;
|
||||
public static final int UNION_RATE_SCHEDULE_ICON = 310;
|
||||
public static final int USER_ICON = 42;
|
||||
public static final int ZOOM_OUT_ICON = 20;
|
||||
|
||||
Image getIconImage(int i);
|
||||
|
||||
Image loadImage(String str);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.tridium.eas.ui;
|
||||
|
||||
public interface StatusDisplay {
|
||||
void clearStatus();
|
||||
|
||||
void setStatus(String str);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
public interface AreaConfig extends LineConfig {
|
||||
Color getLineColor(int i);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
public interface BarConfig extends ChartConfig {
|
||||
Color getBorderColor();
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
public interface ChartConfig {
|
||||
int getChartType();
|
||||
|
||||
Color getValueColor(int i);
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
public interface ChartModelListener {
|
||||
void chartModified(ChartEvent chartEvent);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
public interface ChartStatus {
|
||||
void clearStatus();
|
||||
|
||||
void setStatus(String str);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
import java.awt.Stroke;
|
||||
|
||||
public interface LineConfig extends ChartConfig {
|
||||
Stroke getStroke();
|
||||
|
||||
boolean isDiscrete();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
public interface OverlayListener {
|
||||
void overlayModified(Overlay overlay);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
public interface PieConfig extends ChartConfig {
|
||||
Color getBorderColor();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
public interface ScatterConfig extends ChartConfig {
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
public interface SpectrumConfig extends ChartConfig {
|
||||
Color getHighColor();
|
||||
|
||||
float getHighValue();
|
||||
|
||||
Color getLowColor();
|
||||
|
||||
float getLowValue();
|
||||
|
||||
Color getMiddleColor();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
public interface ValueColors {
|
||||
Color getValueColor(int i);
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.tridium.eas.ui.chart;
|
||||
|
||||
public interface ValueToPixel {
|
||||
int getXPixel(Object obj);
|
||||
|
||||
int getYPixel(Object obj);
|
||||
|
||||
boolean hasX();
|
||||
|
||||
boolean hasY();
|
||||
}
|
||||
@@ -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);
|
||||
}
|
||||
|
After Width: | Height: | Size: 933 B |
|
After Width: | Height: | Size: 944 B |
|
After Width: | Height: | Size: 885 B |
|
After Width: | Height: | Size: 919 B |
|
After Width: | Height: | Size: 924 B |
|
After Width: | Height: | Size: 901 B |
|
After Width: | Height: | Size: 139 B |
|
After Width: | Height: | Size: 496 B |
|
After Width: | Height: | Size: 138 B |
|
After Width: | Height: | Size: 146 B |
|
After Width: | Height: | Size: 947 B |
|
After Width: | Height: | Size: 908 B |
|
After Width: | Height: | Size: 401 B |
|
After Width: | Height: | Size: 144 B |
|
After Width: | Height: | Size: 937 B |
|
After Width: | Height: | Size: 977 B |
|
After Width: | Height: | Size: 152 B |
|
After Width: | Height: | Size: 443 B |
|
After Width: | Height: | Size: 975 B |
|
After Width: | Height: | Size: 956 B |
|
After Width: | Height: | Size: 984 B |
|
After Width: | Height: | Size: 906 B |
|
After Width: | Height: | Size: 162 B |
|
After Width: | Height: | Size: 483 B |
|
After Width: | Height: | Size: 133 B |
|
After Width: | Height: | Size: 178 B |
|
After Width: | Height: | Size: 500 B |
|
After Width: | Height: | Size: 967 B |
|
After Width: | Height: | Size: 927 B |
|
After Width: | Height: | Size: 930 B |
|
After Width: | Height: | Size: 949 B |
|
After Width: | Height: | Size: 218 B |
|
After Width: | Height: | Size: 972 B |
|
After Width: | Height: | Size: 970 B |
@@ -0,0 +1,8 @@
|
||||
package com.tridium.eas.ui.reports;
|
||||
|
||||
public interface ReportConst {
|
||||
public static final int NORMALIZE_BASELINE = 1;
|
||||
public static final int NORMALIZE_FLOOR_AREA = 2;
|
||||
public static final int NORMALIZE_NONE = 0;
|
||||
public static final int NORMALIZE_WEATHER = 4;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.tridium.eas.ui.reports;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
public interface SeriesLabel {
|
||||
Color getColor();
|
||||
|
||||
String getName();
|
||||
}
|
||||
@@ -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);
|
||||
}
|
||||