1 23 24 package org.infoglue.deliver.controllers.kernel.impl.simple; 25 26 import org.infoglue.deliver.applications.actions.InfoGlueComponent; 27 28 public class DecoratedComponentLogic extends ComponentLogic 29 { 30 private TemplateController templateController = null; 31 private InfoGlueComponent infoGlueComponent = null; 32 33 public DecoratedComponentLogic(TemplateController templateController, InfoGlueComponent infoGlueComponent) 34 { 35 super(templateController, infoGlueComponent); 36 this.templateController = templateController; 37 this.infoGlueComponent = infoGlueComponent; 38 } 39 40 43 76 } | Popular Tags |