Package org.jboss.ide.eclipse.freemarker.model

Examples of org.jboss.ide.eclipse.freemarker.model.LibraryMacroDirective


          }
          escape = doEscape;
        }
        if (endIndex > 0) {
          String sub = content.substring(startIndex, endIndex);
          MacroDirective macroDirective = new LibraryMacroDirective(
              null, namespace, sub, startIndex - 1, endIndex
                  - index + 2);
          macroDirectives.add(macroDirective);
          index = content.indexOf(startChar + HASH_MACRO_SPACE, endIndex);
          if (index >= 0)
View Full Code Here

TOP

Related Classes of org.jboss.ide.eclipse.freemarker.model.LibraryMacroDirective

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.