Package org.apache.flex.forks.velocity.runtime.directive

Examples of org.apache.flex.forks.velocity.runtime.directive.VelocimacroProxy


            return sourcetemplate;
        }

        VelocimacroProxy createVelocimacro(String namespace)
        {
            VelocimacroProxy vp = new VelocimacroProxy();
            vp.setName(this.macroname);
            vp.setArgArray(this.argarray);
            vp.setNodeTree(this.nodeTree);
            vp.setNamespace(namespace);
            return vp;
        }
View Full Code Here


     *  behave correctly wrt getting the framework to
     *  dig out the correct # of args
     */
    public Directive getVelocimacro( String vmName, String sourceTemplate )
    {
        VelocimacroProxy vp = null;

        synchronized( this )
        {
            /*
             *  don't ask - do
View Full Code Here

TOP

Related Classes of org.apache.flex.forks.velocity.runtime.directive.VelocimacroProxy

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.