Package pspdash.data

Examples of pspdash.data.NumberData



  public long scanTask (TaskEntry te) { // fill in 'slurp'able data fields
    String thePath = te.taskName.path();

    NumberData pt = (NumberData)data.getSimpleValue (thePath + PLANNED_TIME);
    te.plannedTime = ((pt == null) ? 0 : pt.getInteger());
    DateData ad = (DateData)data.getSimpleValue (thePath + COMPLETED_TIME);
    te.actualDate = ((ad == null) ? null : ad.getValue());
    return te.plannedTime;
  }
View Full Code Here

TOP

Related Classes of pspdash.data.NumberData

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.