Package com.google.template.soy.data

Examples of com.google.template.soy.data.SoyMapData


            return (SoyMapData) globals;
        }

        Map<String, ?> globalsMap  = Utils.toSoyCompatibleMap(globals);
      
        return new SoyMapData(globalsMap);
    }
View Full Code Here


            return (SoyMapData) model;
        }

        Map<String, ?> modeMap  = Utils.toSoyCompatibleMap(model);
      
        return new SoyMapData(modeMap);
    }
View Full Code Here

TOP

Related Classes of com.google.template.soy.data.SoyMapData

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.