application.html
来自「j2ee帮助文档软件设计/软件工程 文件格式」· HTML 代码 · 共 1,031 行 · 第 1/5 页
HTML
1,031 行
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="../../../javax/faces/component/UIComponent.html" title="class in javax.faces.component">UIComponent</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#createComponent(java.lang.String)">createComponent</A></B>(<A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> componentType)</CODE><BR> Instantiate and return a new <A HREF="../../../javax/faces/component/UIComponent.html" title="class in javax.faces.component"><CODE>UIComponent</CODE></A> instance of the class specified by a previous call to <code>addComponent()</code> for the specified component type.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="../../../javax/faces/component/UIComponent.html" title="class in javax.faces.component">UIComponent</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#createComponent(javax.faces.el.ValueBinding, javax.faces.context.FacesContext, java.lang.String)">createComponent</A></B>(<A HREF="../../../javax/faces/el/ValueBinding.html" title="class in javax.faces.el">ValueBinding</A> componentBinding, <A HREF="../../../javax/faces/context/FacesContext.html" title="class in javax.faces.context">FacesContext</A> context, <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> componentType)</CODE><BR> <B>Deprecated.</B> <I>This has been replaced by <A HREF="../../../javax/faces/application/Application.html#createComponent(javax.el.ValueExpression, javax.faces.context.FacesContext, java.lang.String)"><CODE>createComponent(javax.el.ValueExpression,javax.faces.context.FacesContext,java.lang.String)</CODE></A>.</I></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> <A HREF="../../../javax/faces/component/UIComponent.html" title="class in javax.faces.component">UIComponent</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#createComponent(javax.el.ValueExpression, javax.faces.context.FacesContext, java.lang.String)">createComponent</A></B>(<A HREF="../../../javax/el/ValueExpression.html" title="class in javax.el">ValueExpression</A> componentExpression, <A HREF="../../../javax/faces/context/FacesContext.html" title="class in javax.faces.context">FacesContext</A> context, <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> componentType)</CODE><BR> Call the <code>getValue()</code> method on the specified <A HREF="../../../javax/el/ValueExpression.html" title="class in javax.el"><CODE>ValueExpression</CODE></A>.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="../../../javax/faces/convert/Converter.html" title="interface in javax.faces.convert">Converter</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#createConverter(java.lang.Class)">createConverter</A></B>(<A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/Class.html" title="class or interface in java.lang">Class</A> targetClass)</CODE><BR> Instantiate and return a new <A HREF="../../../javax/faces/convert/Converter.html" title="interface in javax.faces.convert"><CODE>Converter</CODE></A> instance of the class that has registered itself as capable of performing conversions for objects of the specified type.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="../../../javax/faces/convert/Converter.html" title="interface in javax.faces.convert">Converter</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#createConverter(java.lang.String)">createConverter</A></B>(<A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> converterId)</CODE><BR> Instantiate and return a new <A HREF="../../../javax/faces/convert/Converter.html" title="interface in javax.faces.convert"><CODE>Converter</CODE></A> instance of the class specified by a previous call to <code>addConverter()</code> for the specified converter id.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="../../../javax/faces/el/MethodBinding.html" title="class in javax.faces.el">MethodBinding</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#createMethodBinding(java.lang.String, java.lang.Class[])">createMethodBinding</A></B>(<A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> ref, <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/Class.html" title="class or interface in java.lang">Class</A>[] params)</CODE><BR> <B>Deprecated.</B> <I>This has been replaced by calling <A HREF="../../../javax/faces/application/Application.html#getExpressionFactory()"><CODE>getExpressionFactory()</CODE></A> then <A HREF="../../../javax/el/ExpressionFactory.html#createMethodExpression(javax.el.ELContext, java.lang.String, java.lang.Class, java.lang.Class[])"><CODE>ExpressionFactory.createMethodExpression(javax.el.ELContext, java.lang.String, java.lang.Class<?>, java.lang.Class<?>[])</CODE></A>.</I></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="../../../javax/faces/validator/Validator.html" title="interface in javax.faces.validator">Validator</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#createValidator(java.lang.String)">createValidator</A></B>(<A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> validatorId)</CODE><BR> Instantiate and return a new <A HREF="../../../javax/faces/validator/Validator.html" title="interface in javax.faces.validator"><CODE>Validator</CODE></A> instance of the class specified by a previous call to <code>addValidator()</code> for the specified validator id.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="../../../javax/faces/el/ValueBinding.html" title="class in javax.faces.el">ValueBinding</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#createValueBinding(java.lang.String)">createValueBinding</A></B>(<A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> ref)</CODE><BR> <B>Deprecated.</B> <I>This has been replaced by calling <A HREF="../../../javax/faces/application/Application.html#getExpressionFactory()"><CODE>getExpressionFactory()</CODE></A> then <A HREF="../../../javax/el/ExpressionFactory.html#createValueExpression(javax.el.ELContext, java.lang.String, java.lang.Class)"><CODE>ExpressionFactory.createValueExpression(javax.el.ELContext, java.lang.String, java.lang.Class<?>)</CODE></A>.</I></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#evaluateExpressionGet(javax.faces.context.FacesContext, java.lang.String, java.lang.Class)">evaluateExpressionGet</A></B>(<A HREF="../../../javax/faces/context/FacesContext.html" title="class in javax.faces.context">FacesContext</A> context, <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> expression, <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/Class.html" title="class or interface in java.lang">Class</A> expectedType)</CODE><BR> Get a value by evaluating an expression.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="../../../javax/faces/event/ActionListener.html" title="interface in javax.faces.event">ActionListener</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getActionListener()">getActionListener</A></B>()</CODE><BR> Return the default <A HREF="../../../javax/faces/event/ActionListener.html" title="interface in javax.faces.event"><CODE>ActionListener</CODE></A> to be registered for all <A HREF="../../../javax/faces/component/ActionSource.html" title="interface in javax.faces.component"><CODE>ActionSource</CODE></A> components in this appication.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/util/Iterator.html" title="class or interface in java.util">Iterator</A><<A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getComponentTypes()">getComponentTypes</A></B>()</CODE><BR> Return an <code>Iterator</code> over the set of currently defined component types for this <code>Application</code>.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/util/Iterator.html" title="class or interface in java.util">Iterator</A><<A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getConverterIds()">getConverterIds</A></B>()</CODE><BR> Return an <code>Iterator</code> over the set of currently registered converter ids for this <code>Application</code>.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/util/Iterator.html" title="class or interface in java.util">Iterator</A><<A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/Class.html" title="class or interface in java.lang">Class</A>></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getConverterTypes()">getConverterTypes</A></B>()</CODE><BR> Return an <code>Iterator</code> over the set of <code>Class</code> instances for which <A HREF="../../../javax/faces/convert/Converter.html" title="interface in javax.faces.convert"><CODE>Converter</CODE></A> classes have been explicitly registered.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/util/Locale.html" title="class or interface in java.util">Locale</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getDefaultLocale()">getDefaultLocale</A></B>()</CODE><BR> Return the default <code>Locale</code> for this application.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getDefaultRenderKitId()">getDefaultRenderKitId</A></B>()</CODE><BR> Return the <code>renderKitId</code> to be used for rendering this application.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> <A HREF="../../../javax/el/ELContextListener.html" title="interface in javax.el">ELContextListener</A>[]</CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getELContextListeners()">getELContextListeners</A></B>()</CODE><BR> If no calls have been made to <A HREF="../../../javax/faces/application/Application.html#addELContextListener(javax.el.ELContextListener)"><CODE>addELContextListener(javax.el.ELContextListener)</CODE></A>, this method must return an empty array.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> <A HREF="../../../javax/el/ELResolver.html" title="class in javax.el">ELResolver</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getELResolver()">getELResolver</A></B>()</CODE><BR> Return the singleton <A HREF="../../../javax/el/ELResolver.html" title="class in javax.el"><CODE>ELResolver</CODE></A> instance to be used for all EL resolution.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> <A HREF="../../../javax/el/ExpressionFactory.html" title="class in javax.el">ExpressionFactory</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getExpressionFactory()">getExpressionFactory</A></B>()</CODE><BR> Return the <A HREF="../../../javax/el/ExpressionFactory.html" title="class in javax.el"><CODE>ExpressionFactory</CODE></A> instance for this application.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getMessageBundle()">getMessageBundle</A></B>()</CODE><BR> Return the fully qualified class name of the <code>ResourceBundle</code> to be used for JavaServer Faces messages for this application.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="../../../javax/faces/application/NavigationHandler.html" title="class in javax.faces.application">NavigationHandler</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getNavigationHandler()">getNavigationHandler</A></B>()</CODE><BR> Return the <A HREF="../../../javax/faces/application/NavigationHandler.html" title="class in javax.faces.application"><CODE>NavigationHandler</CODE></A> instance that will be passed the outcome returned by any invoked application action for this web application.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>abstract <A HREF="../../../javax/faces/el/PropertyResolver.html" title="class in javax.faces.el">PropertyResolver</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getPropertyResolver()">getPropertyResolver</A></B>()</CODE><BR> <B>Deprecated.</B> <I>This has been replaced by <A HREF="../../../javax/faces/application/Application.html#getELResolver()"><CODE>getELResolver()</CODE></A>.</I></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/util/ResourceBundle.html" title="class or interface in java.util">ResourceBundle</A></CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/faces/application/Application.html#getResourceBundle(javax.faces.context.FacesContext, java.lang.String)">getResourceBundle</A></B>(<A HREF="../../../javax/faces/context/FacesContext.html" title="class in javax.faces.context">FacesContext</A> ctx, <A HREF="http://java.sun.com/j2se/1.5/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name)</CODE><BR> Find a <code>ResourceBundle</code> as defined in the application configuration resources under the specified name.</TD></TR>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?