Package railo.runtime.component

Examples of railo.runtime.component.PropertyImpl


  public static DateTime createDateTime(long time) {
    return creator().createDateTime(time);
  }

  public static Property createProperty(String name, String type) {
    PropertyImpl pi = new PropertyImpl();
    pi.setName(name);
    pi.setType(type);
    return pi;
  }
View Full Code Here

TOP

Related Classes of railo.runtime.component.PropertyImpl

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.