Package org.geoserver.web.wicket

Examples of org.geoserver.web.wicket.DecimalTextField


                final TextField<Double> scale;
                final TextField<String> name;
                final Label tiles;
                final Component removeLink;

                resolution = new DecimalTextField("resolution", new PropertyModel<Double>(
                        item.getModel(), "resolution"));
                resolution.setOutputMarkupId(true);
                item.add(resolution);

                scale = new DecimalTextField("scale", new PropertyModel<Double>(item.getModel(),
                        "scaleDenom"));
                scale.setOutputMarkupId(true);
                item.add(scale);

                name = new TextField<String>("name", new PropertyModel<String>(item.getModel(),
View Full Code Here

TOP

Related Classes of org.geoserver.web.wicket.DecimalTextField

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.