Package org.geomajas.layer.feature.attribute

Examples of org.geomajas.layer.feature.attribute.PrimitiveAttribute


    this.name = attribute;
  }

  @SuppressWarnings("unchecked")
  public Attribute<VALUE_TYPE> instantiate() {
    PrimitiveAttribute result;
    Object value = getValue();
    switch (getType()) {
      case BOOLEAN:
        result = new BooleanAttribute((Boolean) value);
        break;
View Full Code Here

TOP

Related Classes of org.geomajas.layer.feature.attribute.PrimitiveAttribute

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.