Package org.dmrad.view.util.type

Examples of org.dmrad.view.util.type.LongConverter


      } else if (propertyClass == Long.class) {
        textField = new TextField("propertyValue", new PropertyModel(
            entity, propertyCode, propertyClass)) {
          static final long serialVersionUID = 200912L;
          public IConverter getConverter() {
            return new LongConverter();
          }
        };
        textField.setType(Long.class);
      } else if (propertyClass == Float.class) {
        textField = new TextField("propertyValue", new PropertyModel(
View Full Code Here

TOP

Related Classes of org.dmrad.view.util.type.LongConverter

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.