Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.strutsel.taglib.* (124)org.apache.strutsel.taglib.bean.* (13)
org.apache.strutsel.taglib.html.* (64)org.apache.strutsel.taglib.logic.* (21)
org.apache.strutsel.taglib.tiles.* (20)org.apache.strutsel.taglib.utils.* (6)

Package Samples:

org.apache.strutsel.taglib.bean
org.apache.strutsel.taglib.html
org.apache.strutsel.taglib.logic
org.apache.strutsel.taglib.tiles
org.apache.strutsel.taglib.utils

Classes:

ELPutTag: Put an attribute in enclosing attribute container tag. Enclosing attribute container tag can be : <insert> or <definition>. Exception is thrown if no appropriate tag can be found. Put tag can have following atributes : name : Name of the attribute value | content : value to put as attribute type : value type. Only valid if value is a String and is set by value="something" or by a bean. Possible type are : string (value is used as direct string), page | template (value is used as a page url to insert), definition (value is used as a definition name to insert) direct : Specify if value ...
ELErrorsTag: Custom tag that renders error messages if an appropriate request attribute has been created. The tag looks for a request attribute with a reserved key, and assumes that it is either a String, a String array, containing message keys to be looked up in the module's MessageResources, or an object of type org.apache.struts.action.ActionErrors . The following optional message keys will be utilized if corresponding messages exist for them in the application resources: errors.header - If present, the corresponding message will be rendered prior to the individual list of error messages. errors.footer - ...
ELFrameTag: Generate an HTML <frame> tag with similar capabilities as those the <html:link> tag provides for hyperlink elements. The src element is rendered using the same technique that LinkTag uses to render the href attribute of a hyperlink. Additionally, the HTML 4.0 frame tag attributes noresize , scrolling , marginheight , marginwidth , frameborder , and longdesc are supported. The frame name attribute is rendered based on the frameName property. Note that the value of longdesc is intended to be a URI, but currently no rewriting is supported. The attribute is set directly from the property ...
ELGetAttributeTag: This is the tag handler for <tiles-el:get>, which gets content from the request scope and either includes the content or prints it, depending upon the value of the content's direct attribute. This tag is intended to be compatible with the same tag from Templates (David Geary). Implementation extends InsertTag for facility (no so well). The only difference is the default value of attribute 'ignore', which is true for this tag (default behavior of David Geary's templates). This class is a subclass of the class org.apache.struts.taglib.tiles.GetAttributeTag which provides most of the described ...
ELGetTag: This is the tag handler for <tiles-el:get>, which gets content from the request scope and either includes the content or prints it, depending upon the value of the content's direct attribute. This tag is intended to be compatible with the same tag from Templates (David Geary). Implementation extends InsertTag for facility (no so well). The only difference is the default value of attribute 'ignore', which is true for this tag (default behavior of David Geary's templates). This class is a subclass of the class org.apache.struts.taglib.tiles.GetTag which provides most of the described functionality. ...
ELMultiboxTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.html.ELMultiboxTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. In particular, it provides for the mapping of the custom tag attribute disabled to the instance variable disabledExpr . This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, ...
ELCancelTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.html.ELCancelTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. In particular, it provides for the mapping of the custom tag attribute disabled to the instance variable disabledExpr . This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, ...
ELResetTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.html.ELResetTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. In particular, it provides for the mapping of the custom tag attribute disabled to the instance variable disabledExpr . This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, ...
ELOptionsCollectionTag: Tag for creating multiple <select> options from a collection. The collection may be part of the enclosing form, or may be independent of the form. Each element of the collection must expose a 'label' and a 'value', the property names of which are configurable by attributes of this tag. The collection may be an array of objects, a Collection, an Enumeration, an Iterator, or a Map. NOTE - This tag requires a Java2 (JDK 1.2 or later) platform. This class is a subclass of the class org.apache.struts.taglib.html.OptionsCollectionTag which provides most of the described functionality. This subclass ...
ELImgTag: Generate an IMG tag to the specified image URI. TODO: make the alt , src , and lowsrc settable from properties (for i18n) handle onLoad , onAbort , and onError events (my JavaScript book is very old, there may be more unsupported events in the past couple of IE versions) This class is a subclass of the class org.apache.struts.taglib.html.ImgTag which provides most of the described functionality. This subclass allows all attribute values to be specified as expressions utilizing the JavaServer Pages Standard Library expression language.
ELOptionsTag: Tag for creating multiple <select> options from a collection. The associated values displayed to the user may optionally be specified by a second collection, or will be the same as the values themselves. Each collection may be an array of objects, a Collection, an Enumeration, an Iterator, or a Map. NOTE - This tag requires a Java2 (JDK 1.2 or later) platform. This class is a subclass of the class org.apache.struts.taglib.html.OptionsTag which provides most of the described functionality. This subclass allows all attribute values to be specified as expressions utilizing the JavaServer Pages ...
ELBaseTag: Renders an HTML element with an href attribute pointing to the absolute location of the enclosing JSP page. This tag is only valid when nested inside a head tag body. The presence of this tag allows the browser to resolve relative URL's to images, CSS stylesheets and other resources in a manner independent of the URL used to call the ActionServlet. This class is a subclass of the class org.apache.struts.taglib.html.BaseTag which provides most of the described functionality. This subclass allows all attribute values to be specified as expressions utilizing the JavaServer Pages Standard Library expression ...
ELMessagesNotPresentTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.logic.ELMessagesNotPresentTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values ...
ELJavascriptValidatorTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.html.ELJavascriptValidatorTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values ...
ELOptionsCollectionTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.html.ELOptionsCollectionTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values ...
ELMessagesPresentTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.logic.ELMessagesPresentTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values are ...
ELNotPresentTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.logic.ELNotPresentTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values are already ...
ELNotMatchTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.logic.ELNotMatchTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values are already ...
ELRedirectTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.logic.ELRedirectTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values are already ...
ELCheckboxTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.html.ELCheckboxTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values are already ...
ELPasswordTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.html.ELPasswordTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values are already ...
ELTextareaTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.html.ELTextareaTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values are already ...
ELForwardTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.logic.ELForwardTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values are already ...
ELPresentTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.logic.ELPresentTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values are already ...
ELIncludeTagBeanInfo: This is the BeanInfo descriptor for the org.apache.strutsel.taglib.bean.ELIncludeTag class. It is needed to override the default mapping of custom tag attribute names to class attribute names. This is because the value of the unevaluated EL expression has to be kept separately from the evaluated value, which is stored in the base class. This is related to the fact that the JSP compiler can choose to reuse different tag instances if they received the same original attribute values, and the JSP compiler can choose to not re-call the setter methods, because it can assume the same values are already ...

Home | Contact Us | Privacy Policy | Terms of Service