src/main/java/com/amazonaws/eclipse/simpleworkflow/asynchrony/freemarker/ActivitiesCodeGenerator.java [44:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.fileCreator = fileCreator;
    }
    
    private Configuration getConfiguration() {
        if (cfg == null) {
            cfg = new Configuration();
            cfg.setClassForTemplateLoading(getClass(), "/");
            cfg.setObjectWrapper(ObjectWrapper.BEANS_WRAPPER);
        }
        
        return cfg;
    }
    
    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());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/eclipse/simpleworkflow/asynchrony/freemarker/WorkflowCodeGenerator.java [44:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.fileCreator = fileCreator;
    }
    
    private Configuration getConfiguration() {
        if (cfg == null) {
            cfg = new Configuration();
            cfg.setClassForTemplateLoading(getClass(), "/");
            cfg.setObjectWrapper(ObjectWrapper.BEANS_WRAPPER);
        }
        
        return cfg;
    }
    
    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());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



