Package avrora.util.help

Examples of avrora.util.help.ClassMapValueItem


    private static void addOptionSection(HelpCategory hc, String title, String para, String optname, ClassMap optvals) {
        LinkedList list = new LinkedList();
        Iterator i = optvals.getSortedList().iterator();
        while (i.hasNext()) {
            String s = (String) i.next();
            list.addLast(new ClassMapValueItem(4, optname, s, optvals));
        }

        hc.addListSection(title, para, list);
    }
View Full Code Here

TOP

Related Classes of avrora.util.help.ClassMapValueItem

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.