com.liferay.faces.alloy.component.fieldset
Class FieldsetBase

java.lang.Object
  extended by javax.faces.component.UIComponent
      extended by javax.faces.component.UIComponentBase
          extended by javax.faces.component.UIPanel
              extended by com.liferay.faces.alloy.component.fieldset.FieldsetBase
All Implemented Interfaces:
com.liferay.faces.util.component.Styleable, EventListener, javax.faces.component.PartialStateHolder, javax.faces.component.StateHolder, javax.faces.component.TransientStateHolder, javax.faces.event.ComponentSystemEventListener, javax.faces.event.FacesListener, javax.faces.event.SystemEventListenerHolder
Direct Known Subclasses:
Fieldset

@Generated(value="com.liferay.alloy.tools.builder.FacesBuilder")
public abstract class FieldsetBase
extends javax.faces.component.UIPanel
implements com.liferay.faces.util.component.Styleable

Author:
Bruno Basto, Kyle Stiemann

Nested Class Summary
protected static class FieldsetBase.FieldsetPropertyKeys
           
 
Field Summary
static String COMPONENT_TYPE
           
static String RENDERER_TYPE
           
 
Fields inherited from class javax.faces.component.UIPanel
COMPONENT_FAMILY
 
Fields inherited from class javax.faces.component.UIComponent
ATTRS_WITH_DECLARED_DEFAULT_VALUES, BEANINFO_KEY, bindings, COMPOSITE_COMPONENT_TYPE_KEY, COMPOSITE_FACET_NAME, CURRENT_COMPONENT, CURRENT_COMPOSITE_COMPONENT, FACETS_KEY, HONOR_CURRENT_COMPONENT_ATTRIBUTES_PARAM_NAME, VIEW_LOCATION_KEY
 
Fields inherited from interface com.liferay.faces.util.component.Styleable
STYLE, STYLE_CLASS
 
Constructor Summary
FieldsetBase()
           
 
Method Summary
 String getLegend()
          legend attribute description:
 String getOnclick()
          onclick attribute description:
 String getOndblclick()
          ondblclick attribute description:
 String getOnkeydown()
          onkeydown attribute description:
 String getOnkeypress()
          onkeypress attribute description:
 String getOnkeyup()
          onkeyup attribute description:
 String getOnmousedown()
          onmousedown attribute description:
 String getOnmousemove()
          onmousemove attribute description:
 String getOnmouseout()
          onmouseout attribute description:
 String getOnmouseover()
          onmouseover attribute description:
 String getOnmouseup()
          onmouseup attribute description:
 String getStyle()
          style attribute description:
 String getStyleClass()
          styleClass attribute description:
 boolean isDisabled()
          disabled attribute description:
 void setDisabled(boolean disabled)
          disabled attribute description:
 void setLegend(String legend)
          legend attribute description:
 void setOnclick(String onclick)
          onclick attribute description:
 void setOndblclick(String ondblclick)
          ondblclick attribute description:
 void setOnkeydown(String onkeydown)
          onkeydown attribute description:
 void setOnkeypress(String onkeypress)
          onkeypress attribute description:
 void setOnkeyup(String onkeyup)
          onkeyup attribute description:
 void setOnmousedown(String onmousedown)
          onmousedown attribute description:
 void setOnmousemove(String onmousemove)
          onmousemove attribute description:
 void setOnmouseout(String onmouseout)
          onmouseout attribute description:
 void setOnmouseover(String onmouseover)
          onmouseover attribute description:
 void setOnmouseup(String onmouseup)
          onmouseup attribute description:
 void setStyle(String style)
          style attribute description:
 void setStyleClass(String styleClass)
          styleClass attribute description:
 
Methods inherited from class javax.faces.component.UIPanel
getFamily
 
Methods inherited from class javax.faces.component.UIComponentBase
addClientBehavior, addFacesListener, broadcast, clearInitialState, decode, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientBehaviors, getClientId, getDefaultEventName, getEventNames, getFacesContext, getFacesListeners, getFacet, getFacetCount, getFacets, getFacetsAndChildren, getId, getListenersForEventClass, getParent, getPassThroughAttributes, getRenderer, getRendererType, getRendersChildren, getValueBinding, invokeOnComponent, isRendered, isTransient, markInitialState, processDecodes, processRestoreState, processSaveState, processUpdates, processValidators, queueEvent, removeFacesListener, restoreAttachedState, restoreState, saveAttachedState, saveState, setId, setParent, setRendered, setRendererType, setTransient, setValueBinding, subscribeToEvent, unsubscribeFromEvent
 
Methods inherited from class javax.faces.component.UIComponent
encodeAll, getClientId, getCompositeComponentParent, getContainerClientId, getCurrentComponent, getCurrentCompositeComponent, getNamingContainer, getPassThroughAttributes, getResourceBundleMap, getStateHelper, getStateHelper, getTransientStateHelper, getTransientStateHelper, getValueExpression, initialStateMarked, isCompositeComponent, isInView, isVisitable, popComponentFromEL, processEvent, pushComponentToEL, restoreTransientState, saveTransientState, setInView, setValueExpression, visitTree
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

COMPONENT_TYPE

public static final String COMPONENT_TYPE
See Also:
Constant Field Values

RENDERER_TYPE

public static final String RENDERER_TYPE
See Also:
Constant Field Values
Constructor Detail

FieldsetBase

public FieldsetBase()
Method Detail

isDisabled

public boolean isDisabled()

disabled attribute description:

When this flag is true, the component will be disabled, and the user will be unable to interact with the component.


setDisabled

public void setDisabled(boolean disabled)

disabled attribute description:

When this flag is true, the component will be disabled, and the user will be unable to interact with the component.


getLegend

public String getLegend()

legend attribute description:

The text value for the rendered <legend> element.


setLegend

public void setLegend(String legend)

legend attribute description:

The text value for the rendered <legend> element.


getOnclick

public String getOnclick()

onclick attribute description:

Javascript to execute when this component is clicked.


setOnclick

public void setOnclick(String onclick)

onclick attribute description:

Javascript to execute when this component is clicked.


getOndblclick

public String getOndblclick()

ondblclick attribute description:

Javascript to execute when a double click event occurs.


setOndblclick

public void setOndblclick(String ondblclick)

ondblclick attribute description:

Javascript to execute when a double click event occurs.


getOnkeydown

public String getOnkeydown()

onkeydown attribute description:

Javascript to execute when a keydown event occurs.


setOnkeydown

public void setOnkeydown(String onkeydown)

onkeydown attribute description:

Javascript to execute when a keydown event occurs.


getOnkeypress

public String getOnkeypress()

onkeypress attribute description:

Javascript to execute when a keypress event occurs.


setOnkeypress

public void setOnkeypress(String onkeypress)

onkeypress attribute description:

Javascript to execute when a keypress event occurs.


getOnkeyup

public String getOnkeyup()

onkeyup attribute description:

Javascript to execute when a keyup event occurs.


setOnkeyup

public void setOnkeyup(String onkeyup)

onkeyup attribute description:

Javascript to execute when a keyup event occurs.


getOnmousedown

public String getOnmousedown()

onmousedown attribute description:

Javascript to execute when a mousedown event occurs.


setOnmousedown

public void setOnmousedown(String onmousedown)

onmousedown attribute description:

Javascript to execute when a mousedown event occurs.


getOnmousemove

public String getOnmousemove()

onmousemove attribute description:

Javascript to execute when a mousemove event occurs.


setOnmousemove

public void setOnmousemove(String onmousemove)

onmousemove attribute description:

Javascript to execute when a mousemove event occurs.


getOnmouseout

public String getOnmouseout()

onmouseout attribute description:

Javascript to execute when a mouseout event occurs.


setOnmouseout

public void setOnmouseout(String onmouseout)

onmouseout attribute description:

Javascript to execute when a mouseout event occurs.


getOnmouseover

public String getOnmouseover()

onmouseover attribute description:

Javascript to execute when a mouseover event occurs.


setOnmouseover

public void setOnmouseover(String onmouseover)

onmouseover attribute description:

Javascript to execute when a mouseover event occurs.


getOnmouseup

public String getOnmouseup()

onmouseup attribute description:

Javascript to execute when a mouseup event occurs.


setOnmouseup

public void setOnmouseup(String onmouseup)

onmouseup attribute description:

Javascript to execute when a mouseup event occurs.


getStyle

public String getStyle()

style attribute description:

HTML passthrough attribute specifying the css style of the element.

Specified by:
getStyle in interface com.liferay.faces.util.component.Styleable

setStyle

public void setStyle(String style)

style attribute description:

HTML passthrough attribute specifying the css style of the element.

Specified by:
setStyle in interface com.liferay.faces.util.component.Styleable

getStyleClass

public String getStyleClass()

styleClass attribute description:

List of CSS class names (separated by spaces) that are to be rendered within the class attribute.

Specified by:
getStyleClass in interface com.liferay.faces.util.component.Styleable

setStyleClass

public void setStyleClass(String styleClass)

styleClass attribute description:

List of CSS class names (separated by spaces) that are to be rendered within the class attribute.

Specified by:
setStyleClass in interface com.liferay.faces.util.component.Styleable


Copyright © 2017 Liferay, Inc.. All rights reserved.