Serialized Form


Package com.sun.webui.jsf.component

Class com.sun.webui.jsf.component.Form.VirtualFormDescriptor extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name

participatingIds

java.lang.String[] participatingIds

submittingIds

java.lang.String[] submittingIds

Class com.sun.webui.jsf.component.Tree extends TreeNode implements Serializable

Serialized Fields

clientSide

boolean clientSide

Set the clientSide attribute to true to specify that the Tree component should run on the client. By default, this attribute is false, so the Tree component interacts with the server. In a client-side tree, expanding and collapsing of the tree nodes happens only in the browser. In a server-side tree, a request is made to the server each time the tree nodes are expanded or collapsed. If you use the actionListener attribute to fire events, you must use a server side tree so that the event can be processed.


clientSide_set

boolean clientSide_set

expandOnSelect

boolean expandOnSelect

Flag indicating that folder / container nodes will automatically expand when they are selected. This attribute is true by default. If you want a tree's container nodes to expand only when the handle icons are clicked, set expandOnSelect to false.


expandOnSelect_set

boolean expandOnSelect_set

immediate

boolean immediate

Flag indicating that event handling for this component should be handled immediately (in Apply Request Values phase) rather than waiting until Invoke Application phase. May be desired for this component when required is true (although most likely not).


immediate_set

boolean immediate_set

required

boolean required
Deprecated. This attribute is deprecated from 4.1 and should not be used as it does not make much sense in the context of the tree.

Flag indicating that the user must select a value for this tree. Default value is false.


required_set

boolean required_set

style

java.lang.String style

CSS style(s) to be applied to the outermost HTML element when this component is rendered.


styleClass

java.lang.String styleClass

CSS style class(es) to be applied to the outermost HTML element when this component is rendered.


visible

boolean visible

Use the visible attribute to indicate whether the component should be viewable by the user in the rendered HTML page. If set to false, the HTML code for the component is present in the page, but the component is hidden with style attributes. By default, visible is set to true, so HTML for the component HTML is included and visible to the user. If the component is not visible, it can still be processed on subsequent form submissions because the HTML is present.


visible_set

boolean visible_set

converter

javax.faces.convert.Converter converter

Converter.


validators

java.util.List<E> validators

The set of Validators associated with this UIComponent.


validatorBinding

javax.faces.el.MethodBinding validatorBinding

submittedValue

java.lang.Object submittedValue

The submittedValue value of this component.


valid

boolean valid

Toggle indicating validity of this component.


localValueSet

boolean localValueSet

The "localValueSet" state for this component.


valueChangeMethod

javax.faces.el.MethodBinding valueChangeMethod

The "valueChange" MethodBinding for this component.


value

java.lang.Object value

The value of the Tree. This should be a String representing the client id of the selected TreeNode.

Class com.sun.webui.jsf.component.TreeNode extends javax.faces.component.UIComponentBase implements Serializable

Serialized Fields

actionExpression

javax.el.MethodExpression actionExpression

The actionExpression attribute is used to specify the action to take when this component is activated by the user. The value of the action attribute must be one of the following:

In the Tree and TreeNode components, the action applies only when attributes are used to define the tree and tree nodes. When facets are used, the action attribute does not apply to the facets.


actionListenerExpression

javax.el.MethodExpression actionListenerExpression

The actionListenerExpression attribute is used to specify a method to handle an action event that is triggered when a component is activated by the user. The actionListenerExpression attribute value must be a Unified EL expression that resolves to a method in a backing bean. The method must take a single parameter that is an ActionEvent, and its return type must be void. The class that defines the method must implement the java.io.Serializable interface or javax.faces.component.StateHolder interface.

In the TreeNode component, the method specified by the actionListenerExpression atttribute is invoked when the node's handle icon is clicked.


expanded

boolean expanded

Set the expanded attribute to true to display the tree node as expanded when the component is initially rendered. When a node is expanded, its child tree nodes are displayed. By default, nodes are collapsed initially.


expanded_set

boolean expanded_set

imageURL

java.lang.String imageURL

Absolute or relative URL to the image to be rendered for the tree node. Note that you cannot use the imageURL to display a theme image in the tree. You should use an image facet that contains a webuijsf:image or webuijsf:imageHyperlink tag to use a theme image. The imageURL attribute is overridden by the image facet.

When the imageURL attribute is used with the url attribute, the image is hyperlinked.


style

java.lang.String style

CSS style(s) to be applied to the outermost HTML element when this component is rendered.


styleClass

java.lang.String styleClass

CSS style class(es) to be applied to the outermost HTML element when this component is rendered.


target

java.lang.String target

The resource at the specified URL is displayed in the frame that is specified with the target attribute. Values such as "_blank" that are valid for the target attribute of the <a> HTML element are also valid for this attribute in the tree components. The target attribute is useful only with the url attribute, and does not apply when a facet is used.


text

java.lang.String text

Specifies the text for this component. If the url or action attributes are also specified, the text is rendered as a hyperlink. If neither the url or action attributes are specified, the specified text is rendered as static text. The text attribute does not apply when the content facet is used.


toolTip

java.lang.String toolTip

Sets the value of the title attribute for the HTML element. The specified text will display as a tooltip if the mouse cursor hovers over the HTML element.


url

java.lang.String url

Indicates that the text that is specified with the text attribute should be rendered as a hyperlink that resolves to the specified URL. If the imageURL attribute is used with the url attribute, the image is hyperlinked. The url attribute does not apply to facets.


visible

boolean visible

Use the visible attribute to indicate whether the component should be viewable by the user in the rendered HTML page. If set to false, the HTML code for the component is present in the page, but the component is hidden with style attributes. By default, visible is set to true, so HTML for the component HTML is included and visible to the user. If the component is not visible, it can still be processed on subsequent form submissions because the HTML is present.


visible_set

boolean visible_set

Class com.sun.webui.jsf.component.Upload extends Field implements Serializable

Serialized Fields

columns

int columns

Number of character character columns used to render this field. The default is 40.


columns_set

boolean columns_set

preservePath

boolean preservePath
If preservePath is true the upload component will preserve the literal value of the file input element as set by the user on the client.

Different browsers handle the value of an HTML input element of type "file" differently. Some browsers submit the literal value of the input element in the multipart/form-data file portion of the request, others only submit the file name portion and not the directory portion. If this property is set to true, the literal value (typically the full path name either entered explicitly by the user, or from a file selection dialogue) will be stored and submitted in a hidden field. The UploadRenderer will preserve the full file path in the corresponding UploadFilterFileItem instance, encapsulated by the UploadedFile instance.

See Also:

It is not clear if it is a security risk to transmit the full file path in clear text to the server.
The default value is false.


preservePath_set

boolean preservePath_set

Package com.sun.webui.jsf.event

Class com.sun.webui.jsf.event.IntervalListener extends java.lang.Object implements Serializable

Class com.sun.webui.jsf.event.SchedulerPreviewListener extends java.lang.Object implements Serializable

Class com.sun.webui.jsf.event.TableSelectPhaseListener extends java.lang.Object implements Serializable

Serialized Fields

unselected

java.lang.Object unselected

selected

java.util.HashMap<K,V> selected

keepSelected

boolean keepSelected

Class com.sun.webui.jsf.event.ToggleActionListener extends java.lang.Object implements Serializable

Class com.sun.webui.jsf.event.TreeNodeToggleEvent extends javax.faces.event.ActionEvent implements Serializable

Serialized Fields

node

TreeNode node

Class com.sun.webui.jsf.event.ValueEvent extends javax.faces.event.FacesEvent implements Serializable

Serialized Fields

selectedOption

java.lang.Object selectedOption

Class com.sun.webui.jsf.event.WizardEvent extends javax.faces.event.FacesEvent implements Serializable

Serialized Fields

step

WizardStep step
Deprecated. use WizardEvent.getStep()

navigationEvent

int navigationEvent
Deprecated. use WizardEvent.getEvent()

navigationSource

javax.faces.component.UIComponent navigationSource
Deprecated. use WizardEvent.getEventSource()

data

java.lang.Object data
Deprecated. use WizardEvent.getGotoStepId()

Package com.sun.webui.jsf.model

Class com.sun.webui.jsf.model.ClockTime extends java.lang.Object implements Serializable

Serialized Fields

hour

java.lang.Integer hour

minute

java.lang.Integer minute

Class com.sun.webui.jsf.model.DefaultOptionsList extends com.sun.webui.jsf.model.OptionsList implements Serializable

Class com.sun.webui.jsf.model.DefaultTableDataProvider extends com.sun.data.provider.impl.ObjectArrayDataProvider implements Serializable

Class com.sun.webui.jsf.model.FileChooserItem extends java.lang.Object implements Serializable

Serialized Fields

item

java.io.File item

itemKey

java.lang.String itemKey

itemLabel

java.lang.String itemLabel

itemDisabled

boolean itemDisabled

Class com.sun.webui.jsf.model.FileChooserModel extends java.lang.Object implements Serializable

Serialized Fields

root

java.lang.String root

separatorString

java.lang.String separatorString

currentDir

java.lang.String currentDir

filterValue

java.lang.String filterValue

sortValue

java.lang.String sortValue

folderChooser

boolean folderChooser

typeSet

boolean typeSet

serverName

java.lang.String serverName

Class com.sun.webui.jsf.model.MultipleSelectOptionsList extends com.sun.webui.jsf.model.DefaultOptionsList implements Serializable

Class com.sun.webui.jsf.model.Option extends javax.faces.model.SelectItem implements Serializable

Serialized Fields

image

java.lang.String image

imageWidth

int imageWidth

imageHeight

int imageHeight

imageAlt

java.lang.String imageAlt

tooltip

java.lang.String tooltip

separator

boolean separator

Class com.sun.webui.jsf.model.OptionGroup extends Option implements Serializable

Serialized Fields

selections

Option[] selections

Class com.sun.webui.jsf.model.OptionsList extends java.lang.Object implements Serializable

Serialized Fields

options

java.util.ArrayList<E> options

selectedValues

java.util.ArrayList<E> selectedValues

isMultiple

boolean isMultiple

Class com.sun.webui.jsf.model.OptionTitle extends Option implements Serializable

Class com.sun.webui.jsf.model.ResourceModelException extends javax.faces.validator.ValidatorException implements Serializable

Class com.sun.webui.jsf.model.ScheduledEvent extends java.lang.Object implements Serializable

Serialized Fields

startTime

java.util.Date startTime
The start time, as a java.util.Date


endTime

java.util.Date endTime
The end time, as a java.util.Date


dateList

java.util.ArrayList<E> dateList

repeatingEvent

boolean repeatingEvent
Whether the event is repeating or not


frequency

RepeatInterval frequency
Holds value of property frequency.


durationUnit

RepeatUnit durationUnit
*

The repeat frequency. The value must be the Integer value of a calendar field identifier (Calendar.HOUR_OF_DAY, etc). See java.util.Calendar for details.

To specify that the event repeats for three months...


duration

java.lang.Integer duration
Holds value of property duration.

Class com.sun.webui.jsf.model.Separator extends Option implements Serializable

Class com.sun.webui.jsf.model.SingleSelectOptionsList extends com.sun.webui.jsf.model.DefaultOptionsList implements Serializable


Package com.sun.webui.jsf.model.scheduler

Class com.sun.webui.jsf.model.scheduler.RepeatInterval extends java.lang.Object implements Serializable

Serialized Fields

calField

java.lang.Integer calField

key

java.lang.String key

representation

java.lang.String representation

defaultRepeatUnitString

java.lang.String defaultRepeatUnitString

Class com.sun.webui.jsf.model.scheduler.RepeatIntervalConverter extends java.lang.Object implements Serializable

Class com.sun.webui.jsf.model.scheduler.RepeatIntervalOption extends Option implements Serializable

Class com.sun.webui.jsf.model.scheduler.RepeatUnit extends java.lang.Object implements Serializable

Serialized Fields

calField

java.lang.Integer calField

key

java.lang.String key

representation

java.lang.String representation

Class com.sun.webui.jsf.model.scheduler.RepeatUnitConverter extends java.lang.Object implements Serializable

Class com.sun.webui.jsf.model.scheduler.RepeatUnitOption extends Option implements Serializable


Package com.sun.webui.jsf.util

Class com.sun.webui.jsf.util.MethodBindingMethodExpressionAdapter extends javax.faces.el.MethodBinding implements Serializable

serialVersionUID: 7334926223014401689L

Serialized Fields

methodExpression

javax.el.MethodExpression methodExpression

tranzient

boolean tranzient

Class com.sun.webui.jsf.util.MethodExpressionMethodBindingAdapter extends javax.el.MethodExpression implements Serializable

serialVersionUID: -1822420567946048452L

Serialized Fields

binding

javax.faces.el.MethodBinding binding

tranzient

boolean tranzient

Class com.sun.webui.jsf.util.UploadFilterFileItem extends java.lang.Object implements Serializable

Serialized Fields

fieldName

java.lang.String fieldName

contentType

java.lang.String contentType

isFormField

boolean isFormField

fileName

java.lang.String fileName

sizeThreshold

int sizeThreshold

repository

java.io.File repository

cachedContent

byte[] cachedContent

dfos

com.sun.webui.jsf.util.UploadFilterDeferredFileOutputStream dfos

maxFileSize

long maxFileSize

errorLog

java.util.List<E> errorLog

clientFilePath

java.lang.String clientFilePath

Package com.sun.webui.theme

Class com.sun.webui.theme.ThemeConfigurationException extends java.lang.RuntimeException implements Serializable

Class com.sun.webui.theme.ThemeServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

lastModified

java.util.Calendar lastModified
The "Last-Modified" timestamp we should broadcast for all resources provided by this servlet. This will enable browsers that cache static resources to send an "If-Modified-Since" header, which will allow us to return a "Not Modified" response. If the "Expires" header is set, this timestamp shall be used to validate expired resources.


expires

java.util.Calendar expires
The "Expires" timestamp we should broadcast for all resources provided by this servlet. This will prevent browsers from unnecessarily sending "If-Modified-Since" headers, reducing the overall number of requests.


cache

java.lang.Boolean cache

gzip

java.lang.Boolean gzip



Copyright © 2008 Sun Microsystems, Inc. All Rights Reserved.