Package megamek.common.options

Examples of megamek.common.options.IOptionGroup


        output.write("<options version=\"1.0\">");

        // Now the options themselves
        Enumeration<IOptionGroup> groups = options.getGroups();
        while (groups.hasMoreElements()) {
            final IOptionGroup group = groups.nextElement();

            Enumeration<IOption> iter = group.getOptions();
            while (iter.hasMoreElements()) {
                final IOption option = iter.nextElement();

                // Encode this option.
                output.write("<gameoption><optionname>");
View Full Code Here

TOP

Related Classes of megamek.common.options.IOptionGroup

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.