Examples of newDataCollection()


Examples of it.unina.seclab.jafimon.MonitoredDataManager.newDataCollection()

    logger.info("starting execution");

    MonitoredDataManager dMgr = new MonitoredDataManager();
    dMgr.appendDateTimeToName = true;
    MonitoredData mData = new MonitoredData();
    int id = dMgr.newDataCollection("Pippo");
   
    for (int i = 0; i < 10; i++)
      dMgr.appendData(id, mData.setData("Ullalla" + i));
   
    String[] lista = dMgr.getCollectionList();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.