165166167168169170171172173174175
{ AbstractFaceletContext actx = (AbstractFaceletContext) ctx; TemplateContext itc = actx.popTemplateContext(); try { handler.applyDefinition(ctx, parent); } finally { actx.pushTemplateContext(itc); }
154155156157158159160161162163164
{ AbstractFaceletContext actx = (AbstractFaceletContext) ctx; //TemplateContext itc = actx.popTemplateContext(); try { handler.applyDefinition(ctx, parent); } finally { //actx.pushTemplateContext(itc); }
186187188189190191192193194195196
156157158159160161162163164165166
151152153154155156157158159160161
143144145146147148149150151152153
135136137138139140141142143144145
return false; } DefineHandler handler = (DefineHandler) this._handlers.get(name); if (handler != null) { handler.applyDefinition(ctx, parent); return true; } else { return false;