@version $Name: $ ($Revision: adfrt/faces/adf-faces-impl/src/main/java/oracle/adfinternal/view/faces/renderkit/core/xhtml/jsLibs/Scriptlet.java#1 $) $Date: 11-nov-2005.14:59:39 $ @author The Oracle ADF Faces Team
126127128129130131132133134135136137138139140141142
RenderingContext arc, Object libKey) throws IOException { if ((XhtmlRenderer.supportsScripting(arc)) && (libKey != null)) { Scriptlet scriptlet = _sScriptletTable.get(libKey); if (scriptlet == null) { if (_LOG.isWarning()) _LOG.warning("Couldn't find scriptlet: " + libKey); } else { scriptlet.outputScriptlet(context, arc); } } }
121122123124125126127128129130131132133134135136137
RenderingContext arc, Object libKey) throws IOException { if ((XhtmlRenderer.supportsScripting(arc)) && (libKey != null)) { Scriptlet scriptlet = _sScriptletTable.get(libKey); if (scriptlet == null) { if (_LOG.isWarning()) _LOG.warning("CANNOT_FIND_SCRIPTLET", libKey); } else { scriptlet.outputScriptlet(context, arc); } } }
128129130131132133134135136137138139140141142143144
Object libKey ) throws IOException { if ((XhtmlRenderer.supportsScripting(rc)) && (libKey != null)) { Scriptlet scriptlet = _sScriptletTable.get(libKey); if (scriptlet == null) { if (_LOG.isWarning()) _LOG.warning("CANNOT_FIND_SCRIPTLET", libKey); } else { scriptlet.outputScriptlet(context, rc); } } }