org.ajax4jsf.taglib.html.jsp
Class AjaxOutputPanel

java.lang.Object
  extended by javax.faces.webapp.UIComponentTagBase
      extended by javax.faces.webapp.UIComponentClassicTagBase
          extended by javax.faces.webapp.UIComponentELTag
              extended by org.richfaces.webapp.taglib.UIComponentELTagBase
                  extended by org.ajax4jsf.webapp.taglib.UIComponentTagBase
                      extended by org.ajax4jsf.taglib.html.jsp.AjaxOutputPanel
All Implemented Interfaces:
javax.servlet.jsp.tagext.BodyTag, javax.servlet.jsp.tagext.IterationTag, javax.servlet.jsp.tagext.JspIdConsumer, javax.servlet.jsp.tagext.JspTag, javax.servlet.jsp.tagext.Tag

public class AjaxOutputPanel
extends org.ajax4jsf.webapp.taglib.UIComponentTagBase


Field Summary
 
Fields inherited from class javax.faces.webapp.UIComponentClassicTagBase
bodyContent, pageContext, UNIQUE_ID_PREFIX
 
Fields inherited from interface javax.servlet.jsp.tagext.Tag
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
 
Fields inherited from interface javax.servlet.jsp.tagext.BodyTag
EVAL_BODY_BUFFERED, EVAL_BODY_TAG
 
Fields inherited from interface javax.servlet.jsp.tagext.IterationTag
EVAL_BODY_AGAIN
 
Constructor Summary
AjaxOutputPanel()
           
 
Method Summary
 java.lang.String getComponentType()
           
 java.lang.String getRendererType()
           
 void release()
           
 void setAjaxRendered(javax.el.ValueExpression __ajaxRendered)
          Defines, whether the content of this component must be (or not) included in AJAX response created by parent AJAX Container, even if it is not forced by reRender list of ajax action.
 void setDir(javax.el.ValueExpression __dir)
          Direction indication for text that does not inherit directionality.
 void setKeepTransient(javax.el.ValueExpression __keepTransient)
          Flag to mark all child components to non-transient.
 void setLang(javax.el.ValueExpression __lang)
          Code describing the language used in the generated markup for this component Setter for lang
 void setLayout(javax.el.ValueExpression __layout)
          HTML layout for generated markup.
 void setOnclick(javax.el.ValueExpression __onclick)
          The client-side script method to be called when the element is clicked Setter for onclick
 void setOndblclick(javax.el.ValueExpression __ondblclick)
          The client-side script method to be called when the element is double-clicked Setter for ondblclick
 void setOnkeydown(javax.el.ValueExpression __onkeydown)
          The client-side script method to be called when a key is pressed down over the element Setter for onkeydown
 void setOnkeypress(javax.el.ValueExpression __onkeypress)
          The client-side script method to be called when a key is pressed over the element and released Setter for onkeypress
 void setOnkeyup(javax.el.ValueExpression __onkeyup)
          The client-side script method to be called when a key is released Setter for onkeyup
 void setOnmousedown(javax.el.ValueExpression __onmousedown)
          The client-side script method to be called when a mouse button is pressed down over the element Setter for onmousedown
 void setOnmousemove(javax.el.ValueExpression __onmousemove)
          The client-side script method to be called when a pointer is moved within the element Setter for onmousemove
 void setOnmouseout(javax.el.ValueExpression __onmouseout)
          The client-side script method to be called when a pointer is moved away from the element Setter for onmouseout
 void setOnmouseover(javax.el.ValueExpression __onmouseover)
          The client-side script method to be called when a pointer is moved onto the element Setter for onmouseover
 void setOnmouseup(javax.el.ValueExpression __onmouseup)
          The client-side script method to be called when a mouse button is released Setter for onmouseup
protected  void setProperties(javax.faces.component.UIComponent component)
           
 void setStyle(javax.el.ValueExpression __style)
          CSS style rules to be applied to the component Setter for style
 void setStyleClass(javax.el.ValueExpression __styleClass)
          Assigns one or more CSS class names to the component.
 void setTitle(javax.el.ValueExpression __title)
          Advisory title information about markup elements generated for this component Setter for title
 
Methods inherited from class org.ajax4jsf.webapp.taglib.UIComponentTagBase
getExpressionFactory, isValueReference, setActionListenerProperty, setActionProperty, setBooleanProperty, setBooleanProperty, setDoubleProperty, setDoubleProperty, setFloatProperty, setFloatProperty, setIntegerProperty, setIntegerProperty, setLongProperty, setLongProperty, setProperty, setProperty, setStringProperty, setStringProperty, setValueChangedListenerProperty, setValueProperty, setValueProperty
 
Methods inherited from class org.richfaces.webapp.taglib.UIComponentELTagBase
setActionListenerProperty, setActionProperty, setConverterProperty, setRowKeyConverterProperty, setValidatorProperty, setValueChangeListenerProperty
 
Methods inherited from class javax.faces.webapp.UIComponentELTag
createComponent, getELContext, hasBinding, setBinding, setRendered
 
Methods inherited from class javax.faces.webapp.UIComponentClassicTagBase
addChild, addFacet, addVerbatimAfterComponent, addVerbatimBeforeComponent, createVerbatimComponent, createVerbatimComponentFromBodyContent, doAfterBody, doEndTag, doInitBody, doStartTag, encodeBegin, encodeChildren, encodeEnd, findComponent, getBodyContent, getComponentInstance, getCreated, getCreatedComponents, getDoAfterBodyValue, getDoEndValue, getDoStartValue, getFacesContext, getFacesJspId, getFacetName, getId, getIndexOfNextChildTag, getJspId, getParent, getParentUIComponentClassicTagBase, getPreviousOut, setBodyContent, setId, setJspId, setPageContext, setParent, setupResponseWriter
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.servlet.jsp.tagext.Tag
doEndTag, doStartTag, getParent, setPageContext, setParent
 

Constructor Detail

AjaxOutputPanel

public AjaxOutputPanel()
Method Detail

setAjaxRendered

public void setAjaxRendered(javax.el.ValueExpression __ajaxRendered)
Defines, whether the content of this component must be (or not) included in AJAX response created by parent AJAX Container, even if it is not forced by reRender list of ajax action. Ignored if component marked to output by some Ajax action component. Default value is "false". Setter for ajaxRendered

Parameters:
ajaxRendered - - new value

setDir

public void setDir(javax.el.ValueExpression __dir)
Direction indication for text that does not inherit directionality. Valid values are "LTR" (left-to-right) and "RTL" (right-to-left) Setter for dir

Parameters:
dir - - new value

setKeepTransient

public void setKeepTransient(javax.el.ValueExpression __keepTransient)
Flag to mark all child components to non-transient. If true, all children components will be set to non-transient state and keep in saved components tree. For output in self-renderer region all content ( By default, all content in <f:verbatim> tags and non-jsf elements in facelets, marked as transient - since, self-rendered ajax regions don't plain output for ajax processing ). Default value is "true" Setter for keepTransient

Parameters:
keepTransient - - new value

setLang

public void setLang(javax.el.ValueExpression __lang)
Code describing the language used in the generated markup for this component Setter for lang

Parameters:
lang - - new value

setLayout

public void setLayout(javax.el.ValueExpression __layout)
HTML layout for generated markup. Possible values: "block" for generating an HTML <div> element, "inline" for generating an HTML <span> element, and "none" for generating no HTML element. There is a minor exception for the "none" case where a child element has the property "rendered" set to "false". In this case, we create an empty <span> element with same ID as the child element to use as a placeholder for later processing. Default value is "inline" Setter for layout

Parameters:
layout - - new value

setOnclick

public void setOnclick(javax.el.ValueExpression __onclick)
The client-side script method to be called when the element is clicked Setter for onclick

Parameters:
onclick - - new value

setOndblclick

public void setOndblclick(javax.el.ValueExpression __ondblclick)
The client-side script method to be called when the element is double-clicked Setter for ondblclick

Parameters:
ondblclick - - new value

setOnkeydown

public void setOnkeydown(javax.el.ValueExpression __onkeydown)
The client-side script method to be called when a key is pressed down over the element Setter for onkeydown

Parameters:
onkeydown - - new value

setOnkeypress

public void setOnkeypress(javax.el.ValueExpression __onkeypress)
The client-side script method to be called when a key is pressed over the element and released Setter for onkeypress

Parameters:
onkeypress - - new value

setOnkeyup

public void setOnkeyup(javax.el.ValueExpression __onkeyup)
The client-side script method to be called when a key is released Setter for onkeyup

Parameters:
onkeyup - - new value

setOnmousedown

public void setOnmousedown(javax.el.ValueExpression __onmousedown)
The client-side script method to be called when a mouse button is pressed down over the element Setter for onmousedown

Parameters:
onmousedown - - new value

setOnmousemove

public void setOnmousemove(javax.el.ValueExpression __onmousemove)
The client-side script method to be called when a pointer is moved within the element Setter for onmousemove

Parameters:
onmousemove - - new value

setOnmouseout

public void setOnmouseout(javax.el.ValueExpression __onmouseout)
The client-side script method to be called when a pointer is moved away from the element Setter for onmouseout

Parameters:
onmouseout - - new value

setOnmouseover

public void setOnmouseover(javax.el.ValueExpression __onmouseover)
The client-side script method to be called when a pointer is moved onto the element Setter for onmouseover

Parameters:
onmouseover - - new value

setOnmouseup

public void setOnmouseup(javax.el.ValueExpression __onmouseup)
The client-side script method to be called when a mouse button is released Setter for onmouseup

Parameters:
onmouseup - - new value

setStyle

public void setStyle(javax.el.ValueExpression __style)
CSS style rules to be applied to the component Setter for style

Parameters:
style - - new value

setStyleClass

public void setStyleClass(javax.el.ValueExpression __styleClass)
Assigns one or more CSS class names to the component. Corresponds to the HTML "class" attribute. Setter for styleClass

Parameters:
styleClass - - new value

setTitle

public void setTitle(javax.el.ValueExpression __title)
Advisory title information about markup elements generated for this component Setter for title

Parameters:
title - - new value

release

public void release()
Specified by:
release in interface javax.servlet.jsp.tagext.Tag
Overrides:
release in class javax.faces.webapp.UIComponentELTag

setProperties

protected void setProperties(javax.faces.component.UIComponent component)
Overrides:
setProperties in class javax.faces.webapp.UIComponentELTag

getComponentType

public java.lang.String getComponentType()
Specified by:
getComponentType in class javax.faces.webapp.UIComponentTagBase

getRendererType

public java.lang.String getRendererType()
Specified by:
getRendererType in class javax.faces.webapp.UIComponentTagBase


Copyright © 2010. All Rights Reserved.