Package com.thoughtworks.xstream.tools.benchmark.model

Examples of com.thoughtworks.xstream.tools.benchmark.model.A50InnerClasses


    public InnerClassesReflection() {
        super(new ArrayList());
        for (int i = 0; i < 10; ++i) {
            List list = new ArrayList();
            list.add(new A50InnerClasses());
            StringBuffer name = new StringBuffer(A50InnerClasses.class.getName());
            for (int j = 0; j < 50; ++j) {
                String no = "0" + j;
                Object parent = list.get(j);
                name.append("$L");
View Full Code Here

TOP

Related Classes of com.thoughtworks.xstream.tools.benchmark.model.A50InnerClasses

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.