Revision 754,
895 bytes
checked in by wojtekp, 12 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package schedframe.resources.computing.profiles.energy.airthroughput.ui; |
---|
2 | |
---|
3 | import java.util.List; |
---|
4 | |
---|
5 | import schedframe.Parameters; |
---|
6 | import schedframe.resources.computing.profiles.energy.airthroughput.AirThroughputState; |
---|
7 | import schedframe.resources.computing.profiles.energy.airthroughput.AirThroughputStateName; |
---|
8 | |
---|
9 | public interface AirThroughputInterface { |
---|
10 | |
---|
11 | public AirThroughputStateName getAirThroughputState(); |
---|
12 | |
---|
13 | public boolean setAirThroughputState(AirThroughputStateName airThroughputState); |
---|
14 | |
---|
15 | public boolean supportAirThroughputState(AirThroughputStateName powerState); |
---|
16 | |
---|
17 | public List<AirThroughputState> getSupportedAirThroughputStates() throws NoSuchFieldException; |
---|
18 | |
---|
19 | public double getAirFlow(AirThroughputStateName state) throws NoSuchFieldException; |
---|
20 | |
---|
21 | public double getPowerConsumption(AirThroughputStateName state) throws NoSuchFieldException; |
---|
22 | |
---|
23 | public Parameters getParameters(); |
---|
24 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.