Package cc.catalysts.cdoclet.generator

Examples of cc.catalysts.cdoclet.generator.AsGenerator


        if (strings.length == 2) annotationTypeMap.addTypeMapping(strings[0], strings[1]);
      }
    }

    if ("actionscript".equals(generator)) {
      return new AsGenerator(destination, namespace, enumAnnotation, typeMap, annotationTypeMap, annotationMap);
    } else if ("cs".equals(generator)) {
      return new VelocityGenerator(destination, namespace, "cs", enumAnnotation, typeMap, annotationTypeMap, annotationMap);
    }
    return null;
  }
View Full Code Here


        if (strings.length == 2) annotationTypeMap.addTypeMapping(strings[0], strings[1]);
      }
    }

    if (Languages.ACTIONSCRIPT.equals(generator)) {
      return new AsGenerator(destination, namespace, enumAnnotation, typeMap, annotationTypeMap, annotationMap);
    } else if (Languages.CSHARP.equals(generator) || Languages.JAVA.equals(generator)) {
      return new TemplateGenerator(destination, namespace, generator, enumAnnotation, typeMap, annotationTypeMap, annotationMap);
    }
   
    return null;
View Full Code Here

        if (strings.length == 2) annotationTypeMap.addTypeMapping(strings[0], strings[1]);
      }
    }

    if (Languages.ACTIONSCRIPT.equals(generator)) {
      return new AsGenerator(destination, namespace, enumAnnotation, typeMap, annotationTypeMap, annotationMap);
    } else if (Languages.CSHARP.equals(generator) || Languages.JAVA.equals(generator)) {
      return new TemplateGenerator(destination, namespace, generator, enumAnnotation, typeMap, annotationTypeMap, annotationMap);
    }
   
    return null;
View Full Code Here

TOP

Related Classes of cc.catalysts.cdoclet.generator.AsGenerator

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.