Package zephyropen.state

Examples of zephyropen.state.State


    protected Color dataColor = Color.RED;

    public GoogleLineGraph(final String title, final String units, final Color color) {
     
      this.title = title;
      this.state = new State(title);
        this.dataColor = color;
        this.units = units;
    }
View Full Code Here


    if (data.equals("")) return;
    state.add(new TimedEntry(data));
  }
 
    public BeamLineGraph(){
      state = new State(this.getClass().getName());
    }
View Full Code Here

     * @param units
     *            is the string to add to the title (eg ms, meters etc)
     */
    public GoogleMeter(String title, String units) {

        this.state = new State(title, 10); //, 3, 5);
        this.title = title;
        this.units = units;
    }
View Full Code Here

TOP

Related Classes of zephyropen.state.State

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.