Package model

Examples of model.Node


  /**
   * @param args
   */
  public static void main(String[] args) {
    // TODO Auto-generated method stub
    Node node = new Node();
    node.setId(0);
    node.setOs("ipad");
    node.setPv(100);
    node.setVv(1000);
    node.setDate("2013-07-09");
    JSONObject ja = JSONObject.fromObject(node);
    System.out.println(ja.toString());
  }
View Full Code Here

TOP

Related Classes of model.Node

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.