Package org.apache.velocity.runtime.directive

Examples of org.apache.velocity.runtime.directive.RuntimeMacro


            else
            {
                /**
                 * Create a new RuntimeMacro
                 */
                directive = new RuntimeMacro(directiveName, getTemplateName());
                directive.setLocation( getLine(), getColumn() );
       
                /**
                 * Initialize it
                 */
 
View Full Code Here


            else
            {
                /**
                 * Create a new RuntimeMacro
                 */
                directive = new RuntimeMacro(directiveName);
                directive.setLocation(getLine(), getColumn(), getTemplateName());
       
                /**
                 * Initialize it
                 */
 
View Full Code Here

            else
            {
                /**
                 * Create a new RuntimeMacro
                 */
                directive = new RuntimeMacro(directiveName, getTemplateName());
                directive.setLocation(getLine(), getColumn(), getTemplateName());
       
                /**
                 * Initialize it
                 */
 
View Full Code Here

            else
            {
                /**
                 * Create a new RuntimeMacro
                 */
                directive = new RuntimeMacro(directiveName, getTemplateName());
                directive.setLocation(getLine(), getColumn(), getTemplateName());

        DEBUG.P("directive="+directive);

                /**
 
View Full Code Here

            else
            {
                /**
                 * Create a new RuntimeMacro
                 */
                directive = new RuntimeMacro(directiveName,
                        context.getCurrentTemplateName());
   
                /**
                 * Initialize it
                 */
 
View Full Code Here

            else
            {
                /**
                 * Create a new RuntimeMacro
                 */
                directive = new RuntimeMacro(directiveName,
                        context.getCurrentTemplateName());
                directive.setLocation( getLine(), getColumn() );
       
                /**
                 * Initialize it
View Full Code Here

            else
            {
                /**
                 * Create a new RuntimeMacro
                 */
                directive = new RuntimeMacro(directiveName);
                directive.setLocation(getLine(), getColumn(), getTemplateName());
       
                /**
                 * Initialize it
                 */
 
View Full Code Here

TOP

Related Classes of org.apache.velocity.runtime.directive.RuntimeMacro

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.