source: DCWoRMS/branches/coolemall/src/test/appProfConverter/dcworms/PhaseState.java @ 1334

Revision 1334, 479 bytes checked in by wojtekp, 11 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package test.appProfConverter.dcworms;
2
3public class PhaseState {
4
5        public int state;
6        public double frequency;
7        public double voltage;
8        public double powerUsageMin;
9        public double powerUsageMax;
10       
11        public PhaseState(int state, double frequency, double voltage, double powerUsageMin, double powerUsageMax) {
12                super();
13                this.state = state;
14                this.frequency = frequency;
15                this.voltage = voltage;
16                this.powerUsageMin = powerUsageMin;
17                this.powerUsageMax = powerUsageMax;
18        }
19
20}
Note: See TracBrowser for help on using the repository browser.