Package it.unina.seclab.jafimon

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


    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();
    for (int i = 0; i < lista.length; i++) {
      logger.trace(lista[i]);
    }
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.