package schedframe.resources.profile; public class PowerUsage { protected long timestamp; protected double value; public PowerUsage(long timestamp, double value){ this.timestamp = timestamp; this.value = value; } public long getTimestamp() { return timestamp; } public double getValue() { return value; } public void setValue(double value) { this.value = value; } }