Examples of IMetaclass


Examples of org.eclipse.e4.xwt.metadata.IMetaclass

   *
   * @param javaclass
   */
  static public void setPropertyValue(Object uiElement, String propertyName,
      Object value) {
    IMetaclass metaclass = XWT.getMetaclass(uiElement);
    IProperty property = metaclass.findProperty(propertyName);
    if (property == null) {
      throw new XWTException("Property " + propertyName + " not found.");
    }
    XWTLoaderManager.getActive().setPropertyValue(uiElement, property,
        value);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.