Package org.glassfish.flashlight.statistics.impl

Examples of org.glassfish.flashlight.statistics.impl.CounterImpl


   

    public static Counter createCount (long... seed){
        Counter count;
        if (seed.length == 0){
            count = new CounterImpl ();
        } else {
            count = new CounterImpl ();
            count.setCount(seed[0]);
        }
        count.setEnabled(true);
        return count;
    }
View Full Code Here

TOP

Related Classes of org.glassfish.flashlight.statistics.impl.CounterImpl

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.