Package org.geomajas.gwt.client.widget.attribute

Examples of org.geomajas.gwt.client.widget.attribute.DefaultFeatureFormFactory


   *            The vector layer that holds all the attribute definitions for the type of feature to display.
   * @param disabled
   *            Should the form initially be disabled or not? When disabled, editing is not possible.
   */
  public FeatureAttributeEditor(VectorLayer layer, boolean disabled) {
    this(layer, disabled, new DefaultFeatureFormFactory());
  }
View Full Code Here


   *        construction time.
   * @since 1.6.0
   */
  @Api
  public FeatureAttributeWindow(Feature feature, boolean editingAllowed) {
    this(feature, editingAllowed, new DefaultFeatureFormFactory());
  }
View Full Code Here

   */
  @Api
  public FeatureAttributeWindow(Feature feature, boolean editingAllowed, FeatureFormFactory<?> factory) {
    super();
    if (factory == null) {
      this.factory = new DefaultFeatureFormFactory();
    } else {
      this.factory = factory;
    }
    setEditingAllowed(editingAllowed);
    if (feature != null) {
View Full Code Here

TOP

Related Classes of org.geomajas.gwt.client.widget.attribute.DefaultFeatureFormFactory

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.