This decode method invokes any registered {@link #DECODE}handlers.
UIComponent
654655656657658659660661662663664
// While we're at it, we should call the LD decode() event so // we can provide a page-level decode() functionality. This // won't effect components in the page, or JSFT-based // components. def.decode(context, root); } } // Return the UIViewRoot return root;
164165166167168169170171
super.decode(context, component); // Call any decode handlers TemplateComponent tempComp = (TemplateComponent) component; LayoutDefinition def = tempComp.getLayoutDefinition(context); def.decode(context, component); } }