Package org.apache.wicket.markup.html.form

Examples of org.apache.wicket.markup.html.form.EnumChoiceRenderer


            super(id, new CompoundPropertyModel(gmlModel));
           
            //srsNameStyle
            List<GMLInfo.SrsNameStyle> choices =
                Arrays.asList(SrsNameStyle.values());
            DropDownChoice srsNameStyle = new DropDownChoice("srsNameStyle", choices, new EnumChoiceRenderer());
            add(srsNameStyle);
           
            add(new CheckBox("overrideGMLAttributes"));
        }
View Full Code Here

TOP

Related Classes of org.apache.wicket.markup.html.form.EnumChoiceRenderer

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.