com.ibm.xsp.component.internal
Class UIViewColumnText

java.lang.Object
  extended by javax.faces.component.UIComponent
      extended by javax.faces.component.UIComponentBase
          extended by javax.faces.component.UIOutput
              extended by com.ibm.xsp.component.UIOutputEx
                  extended by com.ibm.xsp.component.UIOutputText
                      extended by com.ibm.xsp.component.xp.XspOutputText
                          extended by com.ibm.xsp.component.internal.UIViewColumnText
All Implemented Interfaces:
FacesComponent, FacesOutputFiltering, ThemeControl, javax.faces.component.StateHolder, javax.faces.component.ValueHolder

public class UIViewColumnText
extends XspOutputText

This class is public to meet JavaServer Faces API component implementation contract; it should not be instantiated outside UIViewColumn. Not intended to be subclassed.


Nested Class Summary
 
Nested classes/interfaces inherited from class javax.faces.component.UIComponentBase
javax.faces.component.UIComponentBase.AggregatedIterator, javax.faces.component.UIComponentBase.UnmodifiableIterator
 
Nested classes/interfaces inherited from class javax.faces.component.UIComponent
javax.faces.component.UIComponent.StateMap, javax.faces.component.UIComponent.StateMapEntry
 
Field Summary
 
Fields inherited from class com.ibm.xsp.component.xp.XspOutputText
COMPONENT_TYPE
 
Fields inherited from class javax.faces.component.UIOutput
COMPONENT_FAMILY
 
Fields inherited from class javax.faces.component.UIComponentBase
EMPTY_ITERATOR
 
Fields inherited from class javax.faces.component.UIComponent
_xspStateId
 
Constructor Summary
UIViewColumnText()
           
 
Method Summary
 java.lang.String getContentType()
           Return the value of the contentType property.
 javax.faces.convert.Converter getConverter()
           
 java.lang.String getHtmlFilter()
           Return the value of the htmlFilter property.
 java.lang.String getStyle()
           Return the value of the style property.
 java.lang.String getStyleClass()
           Return the value of the styleClass property.
 java.lang.String getStyleKitFamily()
          The styleKitFamily is basically the default themeId, to use if the "themeId" property is not set on this control instance in the XPage source.
 java.lang.Object getValue()
           
 boolean isEscape()
           Return the value of the escape property.
 boolean isRendered()
           
 void setParent(javax.faces.component.UIComponent c)
          sets the parent; must be instance of UIViewColumn or null
 
Methods inherited from class com.ibm.xsp.component.xp.XspOutputText
getDir, getLang, getOuterStyleClass, getRole, getTagName, getTitle, isPreventBlank, restoreState, saveState, setContentType, setDir, setEscape, setHtmlFilter, setLang, setOuterStyleClass, setPreventBlank, setRole, setStyle, setStyleClass, setTagName, setTitle
 
Methods inherited from class com.ibm.xsp.component.UIOutputText
buildContents, getFor, initAfterContents, initBeforeContents, setFor
 
Methods inherited from class com.ibm.xsp.component.UIOutputEx
getDefaultHtmlFilter, getHtmlFilterName
 
Methods inherited from class javax.faces.component.UIOutput
getFamily, getLocalValue, setConverter, setValue
 
Methods inherited from class javax.faces.component.UIComponentBase
_xspCleanTransientData, _xspGetReadOnlyObj, _xspGetRendererData, _xspRemoveReadOnlyObj, _xspRemoveRendererData, _xspSetIdUnchecked, _xspSetReadOnlyObj, _xspSetRendererData, addFacesListener, broadcast, decode, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientId, getFacesContext, getFacesListeners, getFacet, getFacetCount, getFacets, getFacetsAndChildren, getId, getParent, getRenderer, getRendererType, getRendersChildren, getValueBinding, isTransient, processDecodes, processRestoreState, processSaveState, processUpdates, processValidators, queueEvent, removeFacesListener, restoreAttachedState, saveAttachedState, setId, setRendered, setRendererType, setTransient, setValueBinding
 
Methods inherited from class javax.faces.component.UIComponent
_xspGetStateId, _xspGetStateMap, _xspRestoreAttribute, _xspRestoreState, _xspSaveState, invokeOnComponent, isVisitable, markInitialState, setControlState, visitTree
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UIViewColumnText

public UIViewColumnText()
Method Detail

getStyleKitFamily

public java.lang.String getStyleKitFamily()
Description copied from interface: ThemeControl
The styleKitFamily is basically the default themeId, to use if the "themeId" property is not set on this control instance in the XPage source. For example, "InputField.EditBox" is used for most Edit Box controls. See Domino/xsp/nsf/themes/webstandard.theme for more examples.

The implementation may return different values depending on the configuration of the current control, for example the Button control returns a different value and looks different when it is configured as a cancel button.

Specified by:
getStyleKitFamily in interface ThemeControl
Overrides:
getStyleKitFamily in class UIOutputText
Returns:
a non-null themeId corresponding to the configuration for this type of control in a theme file.

setParent

public void setParent(javax.faces.component.UIComponent c)
sets the parent; must be instance of UIViewColumn or null

Overrides:
setParent in class javax.faces.component.UIComponentBase

getStyle

public java.lang.String getStyle()
Description copied from class: XspOutputText

Return the value of the style property. Contents:

Specifies CSS style(s) to be applied when this control is rendered.

XPages Styling Category - style

Overrides:
getStyle in class XspOutputText
See Also:
com.ibm.faces.component.base.XspOutputText#getStyle()

getStyleClass

public java.lang.String getStyleClass()
Description copied from class: XspOutputText

Return the value of the styleClass property. Contents:

Specifies the space-separated list of CSS style class(es) to be applied when this control is rendered. This value must be passed through as the "class" attribute on generated markup.

Overrides:
getStyleClass in class XspOutputText
See Also:
com.ibm.faces.component.base.XspOutputText#getStyleClass()

getValue

public java.lang.Object getValue()
Specified by:
getValue in interface javax.faces.component.ValueHolder
Overrides:
getValue in class javax.faces.component.UIOutput
See Also:
UICommand.getValue()

getConverter

public javax.faces.convert.Converter getConverter()
Specified by:
getConverter in interface javax.faces.component.ValueHolder
Overrides:
getConverter in class javax.faces.component.UIOutput
See Also:
UIOutput.getConverter()

isEscape

public boolean isEscape()
Description copied from class: XspOutputText

Return the value of the escape property. Contents:

Flag indicating that characters that are sensitive in HTML and XML markup must be escaped. This flag is set to "true" by default.

Overrides:
isEscape in class XspOutputText
See Also:
com.ibm.faces.component.base.XspOutputText#isEscape()

getContentType

public java.lang.String getContentType()
Description copied from class: XspOutputText

Return the value of the contentType property. Contents:

Specifies the type of content to expect. HTML and Text are supported. Text is the default.

Overrides:
getContentType in class XspOutputText
See Also:
com.ibm.faces.component.base.XspOutputText#isEscape()

getHtmlFilter

public java.lang.String getHtmlFilter()
Description copied from class: XspOutputText

Return the value of the htmlFilter property. Contents:

Indicates which Active Content Filtering processor to use.

Overrides:
getHtmlFilter in class XspOutputText

isRendered

public boolean isRendered()
Overrides:
isRendered in class javax.faces.component.UIComponentBase