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