private Map getRoot()

in src/main/java/com/amazonaws/eclipse/simpleworkflow/asynchrony/freemarker/WorkflowCodeGenerator.java [57:76]


    private Map<String, Object> getRoot() {
        if (root == null) {
            root = new HashMap<String, Object>();
            root.put("packageName", packageName);
            root.put("clientInterfaceName", getClientInterfaceName());
            root.put("clientImplName", getClientImplName());
            root.put("clientFactoryName", getClientFactoryName());
            root.put("clientFactoryImplName", getClientFactoryImplName());
            root.put("clientExternalInterfaceName", getClientExternalInterfaceName());
            root.put("clientExternalImplName", getClientExternalImplName());
            root.put("clientExternalFactoryName", getClientExternalFactoryName());
            root.put("clientExternalFactoryImplName", getClientExternalFactoryImplName());
            root.put("selfClientInterfaceName", getSelfClientInterfaceName());
            root.put("selfClientImplName", getSelfClientImplName());
            root.put("qualifiedTypeName", workflow.getQualifiedName());
            root.put("workflow", workflow);
        }
        
        return root;
    }