Package modTransf.rules.codeGenerator

Examples of modTransf.rules.codeGenerator.WriterDescriptor


   public void engineStart(RuleContext context)
    throws EngineException
  {
    String tag = "<openWriter>";

    this.desc = new WriterDescriptor( path, filename, fileExt, exprLanguage);
    if(scopeName!=null)
      setScope( toRuleContextScope(scopeName));

    super.engineStart(context);
   }
View Full Code Here


    throws EngineException
  {
    String tag = "<generate>";

    if( path!= null || filename!=null || fileExt!=null )
      this.writerDesc = new WriterDescriptor( path, filename, fileExt, exprLanguage);

    if( template!=null && inlineTemplate!= null )
      throw new EngineException( tag + " Exactly one of 'template' or 'body template' should be specified." );

    if( template==null && inlineTemplate== null )
View Full Code Here

TOP

Related Classes of modTransf.rules.codeGenerator.WriterDescriptor

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.