Package java.beans

Examples of java.beans.BeanDescriptor


  /**
   * @see java.beans.BeanInfo#getBeanDescriptor()
   */
  public BeanDescriptor getBeanDescriptor() {
    BeanDescriptor bd = new BeanDescriptor(BEAN);
    bd.setName("extension");
    bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "extension"));
    bd.setValue("ignore", new String[] { schema.XSD_URI+"#annotation" });
    return bd;
  }
View Full Code Here


  /**
   * @see java.beans.BeanInfo#getBeanDescriptor()
   */
  public BeanDescriptor getBeanDescriptor() {
    BeanDescriptor bd = new BeanDescriptor(BEAN);
    bd.setName("union");
    bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "union"));
    bd.setValue("ignore", new String[] { schema.XSD_URI+"#annotation" });
    return bd;
  }
View Full Code Here

public class choiceBeanInfo extends XMLBeanInfo implements BeanInfo {
  private static final Class BEAN = choice.class;

  public BeanDescriptor getBeanDescriptor() {
    BeanDescriptor bd = new BeanDescriptor(choice.class);
    bd.setName("choice");
    bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "choice"));
    bd.setValue("ignore", new String[] { schema.XSD_URI+"#annotation" });
    return bd;
  }
View Full Code Here

  /**
   * @see java.beans.BeanInfo#getBeanDescriptor()
   */
  public BeanDescriptor getBeanDescriptor() {
    BeanDescriptor bd = new BeanDescriptor(BEAN);
    bd.setName("restriction");
    bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "restriction"));
    bd.setValue("ignore", new String[] { schema.XSD_URI+"#annotation"});
    return bd;
  }
View Full Code Here

  /**
   * @see java.beans.BeanInfo#getBeanDescriptor()
   */
  public BeanDescriptor getBeanDescriptor() {
    BeanDescriptor bd = new BeanDescriptor(BEAN);
    bd.setName("totalDigits");
    bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "totalDigits"));
    bd.setValue("ignore", new String[] { schema.XSD_URI+"#annotation" });
    return bd;
  }
View Full Code Here

  /**
   * @see java.beans.BeanInfo#getBeanDescriptor()
   */
  public BeanDescriptor getBeanDescriptor() {
    BeanDescriptor bd = new BeanDescriptor(BEAN);
    bd.setName("simpleContent");
    bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "simpleContent"));
    bd.setValue("ignore", new String[] { schema.XSD_URI+"#annotation" });
    return bd;
  }
View Full Code Here

  /**
   * @see java.beans.BeanInfo#getBeanDescriptor()
   */
  public BeanDescriptor getBeanDescriptor() {
    BeanDescriptor bd = new BeanDescriptor(BEAN);
    bd.setName("documentation");
    bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "documentation"));
    return bd;
  }
View Full Code Here

  /**
   * @see java.beans.BeanInfo#getBeanDescriptor()
   */
  public BeanDescriptor getBeanDescriptor() {
    BeanDescriptor bd = new BeanDescriptor(BEAN);
    bd.setName("schema");
    bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "schema"));
    bd.setValue("ignore", new String[] {
        schema.XSD_URI+"#notation",
        Ecore.URI+"#documentRoot",
        Ecore.URI+"#nsPrefix",
        Ecore.URI+"#package"
    });
View Full Code Here

  /**
   * @see java.beans.BeanInfo#getBeanDescriptor()
   */
  public BeanDescriptor getBeanDescriptor() {
    BeanDescriptor bd = new BeanDescriptor(BEAN);
    bd.setName("include");
    bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "include"));
    bd.setValue("ignore", new String[] { schema.XSD_URI+"#annotation" });
    return bd;
  }
View Full Code Here

  /**
   * @see java.beans.BeanInfo#getBeanDescriptor()
   */
  public BeanDescriptor getBeanDescriptor() {
    BeanDescriptor bd = new BeanDescriptor(BEAN);
    bd.setName("complexType");
    bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "complexType"));
    return bd;
  }
View Full Code Here

TOP

Related Classes of java.beans.BeanDescriptor

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.