Package net.asfun.jangod.lib

Examples of net.asfun.jangod.lib.Macro


  String endName = null;

  public MacroNode(MacroToken token) throws ParseException{
    super();
    master = token;
    Macro macro = MacroLibrary.getMacro(master.getMacroName());
    if ( macro == null ) {
      throw new ParseException("Can't find macro >>> " + master.getMacroName());
    }
    endName = macro.getEndMacroName();
  }
View Full Code Here


      return Constants.STR_BLANK;
    }
  }

  public void refactor(TreeRebuilder rebuilder) throws ParseException {
    Macro macro = MacroLibrary.getMacro(master.getMacroName());
    macro.refactor(this, master.getHelpers(), rebuilder);
  }
View Full Code Here

TOP

Related Classes of net.asfun.jangod.lib.Macro

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.