Package org.yaac.shared.stat.models

Examples of org.yaac.shared.stat.models.NSTotal


    Date timestamp = new Date();
   
    Total total = new Total(1000L, 10L, timestamp);
   
    Map<String, NSTotal> nsTotalsMap = new HashMap<String, NSTotal>();
    nsTotalsMap.put("", new NSTotal(500L, 3L, new Date()));
    nsTotalsMap.put("namespace_1", new NSTotal(200L, 3L, timestamp));
    nsTotalsMap.put("namespace_2", new NSTotal(300L, 4L, timestamp));

    List<PropertyType> propertyTypes = new LinkedList<PropertyType>();
    propertyTypes.add(new PropertyType(200L, 10L, timestamp, "Date/Time"));
    propertyTypes.add(new PropertyType(200L, 10L, timestamp, "Integer"));
    propertyTypes.add(new PropertyType(200L, 10L, timestamp, "String"));
View Full Code Here

TOP

Related Classes of org.yaac.shared.stat.models.NSTotal

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.