Package org.joshy.sketch.util

Examples of org.joshy.sketch.util.RandomString


    private String name;
   
    private static int counter = 0;

    public Page() {
        this.id = new RandomString(32).nextString();
        this.name = "page " + counter;
        counter++;
    }
View Full Code Here

TOP

Related Classes of org.joshy.sketch.util.RandomString

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.