Beispiel #1
0
 public ComponentTagHandlerDelegateImpl(ComponentHandler owner) {
   this.owner = owner;
   ComponentConfig config = owner.getComponentConfig();
   this.componentType = config.getComponentType();
   this.rendererType = config.getRendererType();
   this.id = owner.getTagAttribute("id");
   this.binding = owner.getTagAttribute("binding");
 }
Beispiel #2
0
 CompositeComponentTagHandler(Resource ccResource, ComponentConfig config) {
   super(config);
   this.ccResource = ccResource;
   this.binding = config.getTag().getAttributes().get("binding");
   ((ComponentTagHandlerDelegateImpl) this.getTagHandlerDelegate())
       .setCreateCompositeComponentDelegate(this);
 }