Package org.geomajas.layer.feature.attribute

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


      case IMGURL:
        return new ImageUrlAttribute();
      case INTEGER:
        return new IntegerAttribute();
      case LONG:
        return new LongAttribute();
      case SHORT:
        return new ShortAttribute();
      case STRING:
        return new StringAttribute();
      case URL:
View Full Code Here


      this.attribute = new IntegerAttribute(value);
      this.info = new PrimitiveAttributeInfo(name, label, PrimitiveType.INTEGER);
    }

    AttributeInfoPair(String name, String label, long value) {
      this.attribute = new LongAttribute(value);
      this.info = new PrimitiveAttributeInfo(name, label, PrimitiveType.LONG);
    }
View Full Code Here

          case SHORT:
            return new ShortAttribute();
          case INTEGER:
            return new IntegerAttribute();
          case LONG:
            return new LongAttribute();
          case FLOAT:
            return new FloatAttribute();
          case DOUBLE:
            return new DoubleAttribute();
          case CURRENCY:
View Full Code Here

TOP

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

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.