Package cc.catalysts.cdoclet.generator.velocity

Examples of cc.catalysts.cdoclet.generator.velocity.PropertyDescriptor


    beginType(new EnumDescriptor(type));
  }

 
  public void beginGetter(Type classType, Type methodType, int modifier, Type returnType, String propertyName, String description, boolean override) {
    propertyDescriptor = new PropertyDescriptor(modifier, returnType, methodType, propertyName);
    propertyDescriptor.setGetter(true);
    propertyDescriptor.setOverride(override);
    propertyDescriptor.setDescription(description);
    typeDescriptor.addPropertyDescriptor(propertyDescriptor);
View Full Code Here


    typeDescriptors.add(proxyTypeDescriptor);
  }

 
  public void beginSetter(Type classType, Type methodType, int modifier, Type returnType, String propertyName, String description, boolean override) {
    propertyDescriptor = new PropertyDescriptor(modifier, returnType, methodType, propertyName);
    propertyDescriptor.setSetter(true);
    propertyDescriptor.setOverride(override);
    propertyDescriptor.setDescription(description);
    typeDescriptor.addPropertyDescriptor(propertyDescriptor);
View Full Code Here

    beginType(new EnumDescriptor(type));
  }

 
  public void beginGetter(Type classType, Type methodType, int modifier, Type returnType, String propertyName, String description, boolean override) {
    propertyDescriptor = new PropertyDescriptor(modifier, returnType, methodType, propertyName);
    propertyDescriptor.setGetter(true);
    propertyDescriptor.setOverride(override);
    propertyDescriptor.setDescription(description);
    typeDescriptor.addPropertyDescriptor(propertyDescriptor);
View Full Code Here

    typeDescriptors.add(proxyTypeDescriptor);
  }

 
  public void beginSetter(Type classType, Type methodType, int modifier, Type returnType, String propertyName, String description, boolean override) {
    propertyDescriptor = new PropertyDescriptor(modifier, returnType, methodType, propertyName);
    propertyDescriptor.setSetter(true);
    propertyDescriptor.setOverride(override);
    propertyDescriptor.setDescription(description);
    typeDescriptor.addPropertyDescriptor(propertyDescriptor);
View Full Code Here

    beginType(new EnumDescriptor(type));
  }

 
  public void beginGetter(Type classType, Type methodType, int modifier, Type returnType, String propertyName, String description, boolean override) {
    propertyDescriptor = new PropertyDescriptor(modifier, returnType, methodType, propertyName);
    propertyDescriptor.setGetter(true);
    propertyDescriptor.setOverride(override);
    propertyDescriptor.setDescription(description);
    typeDescriptor.addPropertyDescriptor(propertyDescriptor);
View Full Code Here

    typeDescriptors.add(proxyTypeDescriptor);
  }

 
  public void beginSetter(Type classType, Type methodType, int modifier, Type returnType, String propertyName, String description, boolean override) {
    propertyDescriptor = new PropertyDescriptor(modifier, returnType, methodType, propertyName);
    propertyDescriptor.setSetter(true);
    propertyDescriptor.setOverride(override);
    propertyDescriptor.setDescription(description);
    typeDescriptor.addPropertyDescriptor(propertyDescriptor);
View Full Code Here

TOP

Related Classes of cc.catalysts.cdoclet.generator.velocity.PropertyDescriptor

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.