Serialized Form


Package org.apache.wicket

Class org.apache.wicket.AbortException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.AbstractRestartResponseException extends AbortException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.AccessStackPageMap extends PageMap implements Serializable

serialVersionUID: 1L

Serialized Fields

accessStack

ArrayListStack<T> accessStack
Stack of entry accesses by id

Class org.apache.wicket.AccessStackPageMap.Access extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id

version

int version

Class org.apache.wicket.AttributeModifier extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

addAttributeIfNotPresent

boolean addAttributeIfNotPresent
Whether to add the attribute if it is not an attribute in the markup.


attribute

java.lang.String attribute
Attribute specification.


enabled

boolean enabled
Modification information.


pattern

java.lang.String pattern
The pattern.


replaceModel

IModel<T> replaceModel
The model that is to be used for the replacement.

Class org.apache.wicket.Component extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

flags

int flags
Component flags. See FLAG_* for possible non-exclusive flag values.


id

java.lang.String id
Component id.


parent

MarkupContainer parent
Any parent container.


markupIndex

int markupIndex
I really dislike it, but for now we need it. Reason: due to transparent containers and IComponentResolver there is guaranteed 1:1 mapping between component and markup


generatedMarkupId

int generatedMarkupId
Instead of remembering the whole markupId, we just remember the number for this component so we can "reconstruct" the markupId on demand. While this could be part of Component.data, profiling showed that having it as separate property consumes less memory.


data

java.lang.Object data
The object that holds the component state.

What's stored here depends on what attributes are set on component. Data can contains combination of following attributes:

If there is only one attribute set (i.e. model or MetaDataEntry([]) or one behavior), the #data object points directly to value of that attribute. Otherwise the data is of type Object[] where the attributes are ordered as specified above.

Class org.apache.wicket.Component.ComponentModelChange extends Change implements Serializable

serialVersionUID: 1L

Serialized Fields

model

IModel<T> model
Former model.

Class org.apache.wicket.Component.EnabledChange extends Change implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component
Subject.


enabled

boolean enabled
Former value.

Class org.apache.wicket.Component.VisibilityChange extends Change implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component
Subject.


visible

boolean visible
Former value.

Class org.apache.wicket.MarkupContainer extends Component implements Serializable

serialVersionUID: 1L

Serialized Fields

children

java.lang.Object children
List of children or single child

Class org.apache.wicket.MetaDataKey extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.Page extends MarkupContainer implements Serializable

serialVersionUID: 1L

Serialization Methods

writeReplace

protected java.lang.Object writeReplace()
                                 throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

autoIndex

short autoIndex
Used to create page-unique numbers


numericId

int numericId
Numeric version of this page's id


pageMapName

java.lang.String pageMapName
Name of PageMap that this page is stored in


versionManager

IPageVersionManager versionManager
Version manager for this page


parameters

PageParameters parameters
The page parameters object hat constructed this page

Class org.apache.wicket.PageId extends PageReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.PageMap extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

metaData

org.apache.wicket.MetaDataEntry<T>[] metaData
MetaDataEntry array.


interceptContinuationURL

java.lang.String interceptContinuationURL
URL to continue to after a given page.


name

java.lang.String name
Name of this page map


pageId

int pageId
Next available page identifier in this page map.

Class org.apache.wicket.PageParameters extends ValueMap implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.PageReference extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

pageMapName

java.lang.String pageMapName

number

int number

version

int version

Class org.apache.wicket.RedirectToUrlException extends AbstractRestartResponseException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.Resource extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

cacheable

boolean cacheable
True if this resource can be cached

Class org.apache.wicket.ResourceReference extends java.lang.Object implements Serializable

serialVersionUID: 2L

Serialized Fields

locale

java.util.Locale locale
The locale of the resource


name

java.lang.String name
The name of the resource


scopeName

java.lang.String scopeName
The scope of the named resource


style

java.lang.String style
The style of the resource

Class org.apache.wicket.RestartResponseAtInterceptPageException extends AbstractRestartResponseException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.RestartResponseException extends AbstractRestartResponseException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.Session extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

sequence

int sequence
a sequence used for whenever something session-specific needs a unique value


pageIdCounter

int pageIdCounter

autoCreatePageMapCounter

int autoCreatePageMapCounter
A number to generate names for auto create pagemaps


clientInfo

ClientInfo clientInfo
Cached instance of agent info which is typically designated by calling RequestCycle.newClientInfo().


feedbackMessages

FeedbackMessages feedbackMessages
feedback messages


id

java.lang.String id
cached id because you can't access the id after session unbound


locale

java.util.Locale locale
The locale to use when loading resources for this session.


metaData

org.apache.wicket.MetaDataEntry<T>[] metaData
Application level meta data.


style

java.lang.String style
Any special "skin" style to use when loading resources.


usedPageMaps

java.util.LinkedList<E> usedPageMaps
A linked list for last used pagemap queue

Class org.apache.wicket.Session.PageMapAccessMetaData extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

pageMapNames

java.util.Set<E> pageMapNames

Class org.apache.wicket.WicketRuntimeException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.ajax

Class org.apache.wicket.ajax.AbstractAjaxTimerBehavior extends AbstractDefaultAjaxBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

updateInterval

Duration updateInterval
The update interval


stopped

boolean stopped

headRendered

boolean headRendered

Class org.apache.wicket.ajax.AbstractDefaultAjaxBehavior extends AbstractAjaxBehavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.AjaxEventBehavior extends AbstractDefaultAjaxBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

event

java.lang.String event

throttlingSettings

org.apache.wicket.ajax.AjaxEventBehavior.ThrottlingSettings throttlingSettings

Class org.apache.wicket.ajax.AjaxSelfUpdatingTimerBehavior extends AbstractAjaxTimerBehavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.WicketAjaxReference extends JavascriptResourceReference implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.ajax.calldecorator

Class org.apache.wicket.ajax.calldecorator.AjaxCallDecorator extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.calldecorator.AjaxCallThrottlingDecorator extends AjaxPostprocessingCallDecorator implements Serializable

serialVersionUID: 1L

Serialized Fields

duration

Duration duration

id

java.lang.String id

Class org.apache.wicket.ajax.calldecorator.AjaxPostprocessingCallDecorator extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

delegate

IAjaxCallDecorator delegate

Class org.apache.wicket.ajax.calldecorator.AjaxPreprocessingCallDecorator extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

delegate

IAjaxCallDecorator delegate

Class org.apache.wicket.ajax.calldecorator.CancelEventIfNoAjaxDecorator extends AjaxPostprocessingCallDecorator implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.ajax.form

Class org.apache.wicket.ajax.form.AjaxFormChoiceComponentUpdatingBehavior extends AbstractDefaultAjaxBehavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.form.AjaxFormComponentUpdatingBehavior extends AjaxEventBehavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.form.AjaxFormSubmitBehavior extends AjaxEventBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

__form

Form<T> __form
should never be accessed directly (thus the __ cause its overkill to create a super class), instead always use #getForm()

Class org.apache.wicket.ajax.form.AjaxFormValidatingBehavior extends AjaxFormSubmitBehavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.form.OnChangeAjaxBehavior extends AjaxFormComponentUpdatingBehavior implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.ajax.markup.html

Class org.apache.wicket.ajax.markup.html.AjaxFallbackLink extends Link<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.markup.html.AjaxLink extends AbstractLink implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.ajax.markup.html.form

Class org.apache.wicket.ajax.markup.html.form.AjaxButton extends Button implements Serializable

serialVersionUID: 1L

Serialized Fields

form

Form<T> form

Class org.apache.wicket.ajax.markup.html.form.AjaxCheckBox extends CheckBox implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.markup.html.form.AjaxFallbackButton extends Button implements Serializable

serialVersionUID: 1L

Serialized Fields

mForm

Form<T> mForm

Class org.apache.wicket.ajax.markup.html.form.AjaxSubmitButton extends AjaxButton implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.markup.html.form.AjaxSubmitLink extends AbstractSubmitLink implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.ajax.markup.html.navigation.paging

Class org.apache.wicket.ajax.markup.html.navigation.paging.AjaxPagingNavigation extends PagingNavigation implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.markup.html.navigation.paging.AjaxPagingNavigationBehavior extends AjaxEventBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

owner

IAjaxLink owner
The ajaxian link that should receive the event.

Class org.apache.wicket.ajax.markup.html.navigation.paging.AjaxPagingNavigationIncrementLink extends PagingNavigationIncrementLink<java.lang.Void> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.markup.html.navigation.paging.AjaxPagingNavigationLink extends PagingNavigationLink<java.lang.Void> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.markup.html.navigation.paging.AjaxPagingNavigator extends PagingNavigator implements Serializable

serialVersionUID: 1L

Serialized Fields

pageable

IPageable pageable
The pageable component that needs to be updated.


Package org.apache.wicket.authorization

Class org.apache.wicket.authorization.Action extends EnumeratedType implements Serializable

serialVersionUID: -1L

Serialized Fields

name

java.lang.String name
The name of this action.

Class org.apache.wicket.authorization.AuthorizationException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.authorization.UnauthorizedActionException extends AuthorizationException implements Serializable

serialVersionUID: 1L

Serialized Fields

action

Action action
The action


component

Component component
The component that caused the unauthorized exception

Class org.apache.wicket.authorization.UnauthorizedInstantiationException extends AuthorizationException implements Serializable

serialVersionUID: 1L

Serialized Fields

componentClassName

java.lang.String componentClassName
The component class that could not be instantiated


Package org.apache.wicket.authorization.strategies.action

Package org.apache.wicket.behavior

Class org.apache.wicket.behavior.AbstractAjaxBehavior extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component
the component that this handler is bound to.

Class org.apache.wicket.behavior.AbstractBehavior extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.behavior.AbstractHeaderContributor extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.behavior.AttributeAppender extends AttributeModifier implements Serializable

serialVersionUID: 1L

Serialized Fields

separator

java.lang.String separator
Separates the existing attribute value and the append value.

Class org.apache.wicket.behavior.HeaderContributor extends AbstractHeaderContributor implements Serializable

serialVersionUID: 1L

Serialized Fields

headerContributor

IHeaderContributor headerContributor
Resource reference to contribute.

Class org.apache.wicket.behavior.SimpleAttributeModifier extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

attribute

java.lang.String attribute
The attribute


value

java.lang.CharSequence value
The value to set

Class org.apache.wicket.behavior.StringHeaderContributor extends AbstractHeaderContributor implements Serializable

serialVersionUID: 1L

Serialized Fields

contributor

org.apache.wicket.behavior.StringHeaderContributor.StringContributor contributor
the contributor instance.


Package org.apache.wicket.feedback

Class org.apache.wicket.feedback.ComponentFeedbackMessageFilter extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component
The component to accept feedback messages for

Class org.apache.wicket.feedback.ContainerFeedbackMessageFilter extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

container

MarkupContainer container

Class org.apache.wicket.feedback.ErrorLevelFeedbackMessageFilter extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

minimumErrorLevel

int minimumErrorLevel
The minimum error level

Class org.apache.wicket.feedback.FeedbackMessage extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

level

int level
The message level; can be used by rendering components. Note that what actually happens with the level indication is totally up to the components that render messages like these. The default level is UNDEFINED.


message

java.io.Serializable message
The actual message.


reporter

Component reporter
The reporting component.


rendered

boolean rendered
Whether or not this message has been rendered

Class org.apache.wicket.feedback.FeedbackMessages extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

messages

java.util.List<E> messages
Holds a list of FeedbackMessages.

Class org.apache.wicket.feedback.FeedbackMessagesModel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

filter

IFeedbackMessageFilter filter
Message filter


sortingComparator

java.util.Comparator<T> sortingComparator
Comparator used for sorting the messages.


Package org.apache.wicket.markup

Class org.apache.wicket.markup.MarkupException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Serialized Fields

markupStream

MarkupStream markupStream
The markup stream that was being parsed when the exception was thrown

Class org.apache.wicket.markup.MarkupNotFoundException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.MarkupResourceStream extends java.lang.Object implements Serializable

serialVersionUID: 1846489965076612828L

Serialized Fields

resourceStream

IResourceStream resourceStream
The associated markup resource stream


containerInfo

ContainerInfo containerInfo
Container info like Class, locale and style which were used to locate the resource


markupClassName

java.lang.String markupClassName
The actual component class the markup is directly associated with. It might be super class of the component class


cacheKey

java.lang.String cacheKey
The key used to cache the markup resource stream


Package org.apache.wicket.markup.html

Class org.apache.wicket.markup.html.CompressedPackageResource extends PackageResource implements Serializable

serialVersionUID: 1L

Serialized Fields

resourceStream

IResourceStream resourceStream

Class org.apache.wicket.markup.html.CompressedPackageResource.CompressingResourceStream extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

timeStamp

Time timeStamp
Timestamp of the cache

Class org.apache.wicket.markup.html.ContainerWithAssociatedMarkupHelper extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

noMoreWicketHeadTagsAllowed

boolean noMoreWicketHeadTagsAllowed
is only allowed before , , etc.


container

WebMarkupContainer container
The markup container the helper is associated with

Class org.apache.wicket.markup.html.CSSPackageResource extends PackageResource implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.DynamicWebResource extends WebResource implements Serializable

serialVersionUID: 1L

Serialized Fields

locale

java.util.Locale locale
The resource locale.


filename

java.lang.String filename
The filename that will be set as the Content-Disposition header.

Class org.apache.wicket.markup.html.HeaderPartContainer extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

container

MarkupContainer container
The panel or bordered page the header part is associated with


scope

java.lang.String scope
. A kind of namespace

Class org.apache.wicket.markup.html.JavascriptPackageResource extends CompressedPackageResource implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.JavascriptPackageResource.FilteringResourceStream extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

cache

java.lang.ref.SoftReference<T> cache
Cache for compressed data


timeStamp

Time timeStamp
Timestamp of the cache

Class org.apache.wicket.markup.html.PackageResource extends WebResource implements Serializable

serialVersionUID: 1L

Serialized Fields

absolutePath

java.lang.String absolutePath
The path to the resource


locale

java.util.Locale locale
The resource's locale


path

java.lang.String path
The path this resource was created with.


scopeName

java.lang.String scopeName
The scoping class, used for class loading and to determine the package.


style

java.lang.String style
The resource's style

Class org.apache.wicket.markup.html.PackageResource.PackageResourceBlockedException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.PackageResourceReference extends ResourceReference implements Serializable

serialVersionUID: 1L

Serialized Fields

hash

int hash
Deprecated. 
pre-calculated has code for this immutable object.

Class org.apache.wicket.markup.html.SecurePackageResourceGuard.SimpleCache extends java.util.concurrent.ConcurrentHashMap<java.lang.String,java.lang.Boolean> implements Serializable

serialVersionUID: 1L

Serialized Fields

fifo

java.util.concurrent.ConcurrentLinkedQueue<E> fifo

maxSize

int maxSize

Class org.apache.wicket.markup.html.WebComponent extends Component implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.WebMarkupContainer extends MarkupContainer implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.WebMarkupContainerWithAssociatedMarkup extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

markupHelper

ContainerWithAssociatedMarkupHelper markupHelper
A utility class which implements the internals

Class org.apache.wicket.markup.html.WebPage extends Page implements Serializable

serialVersionUID: 1L

Serialized Fields

compressor

UrlCompressor compressor
The url compressor that will compress the urls by collapsing the component path and listener interface

Class org.apache.wicket.markup.html.WebResource extends Resource implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.WicketEventReference extends JavascriptResourceReference implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.basic

Class org.apache.wicket.markup.html.basic.EnclosureContainer extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

child

Component child
The child component to delegate the isVisible() call to

Class org.apache.wicket.markup.html.basic.EnumLabel extends WebComponent implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.basic.Label extends WebComponent implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.basic.MultiLineLabel extends WebComponent implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.body

Class org.apache.wicket.markup.html.body.BodyTagAttributeModifier extends AttributeModifier implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream inputStream)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
AttributeModifiers must be Serialzable but WeakReferences are not. Hence, we need to implement our read/write methods to properly support it.

Throws:
java.io.IOException
java.lang.ClassNotFoundException
See Also:
Serializable

writeObject

private void writeObject(java.io.ObjectOutputStream outputStream)
                  throws java.io.IOException
AttributeModifiers must be Serialzable but WeakReferences are not. Hence, we need to implement our read/write methods to properly support it.

Throws:
java.io.IOException
See Also:
Serializable

Package org.apache.wicket.markup.html.border

Class org.apache.wicket.markup.html.border.Border extends WebMarkupContainerWithAssociatedMarkup implements Serializable

serialVersionUID: 1L

Serialized Fields

transparentResolver

boolean transparentResolver
Should be true for bordered pages


body

Border.BorderBodyContainer body
The body component associated with


beginOfBodyIndex

int beginOfBodyIndex

Class org.apache.wicket.markup.html.border.Border.BorderBodyContainer extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.border.BoxBorder extends Border implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.border.MarkupComponentBorder extends java.lang.Object implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.debug

Class org.apache.wicket.markup.html.debug.PageView extends Panel implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.form

Class org.apache.wicket.markup.html.form.AbstractChoice extends FormComponent<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

choices

IModel<T> choices
The list of objects.


renderer

IChoiceRenderer<T> renderer
The renderer used to generate display/id values for the objects.

Class org.apache.wicket.markup.html.form.AbstractSingleSelectChoice extends AbstractChoice<T,T> implements Serializable

serialVersionUID: 1L

Serialized Fields

nullValid

boolean nullValid
whether or not null will be offered as a choice once a nonnull value is saved

Class org.apache.wicket.markup.html.form.AbstractSubmitLink extends AbstractLink implements Serializable

serialVersionUID: 1L

Serialized Fields

form

Form<T> form
Target form or null if the form is parent of the link.


defaultFormProcessing

boolean defaultFormProcessing
If false, all standard processing like validating and model updating is skipped.

Class org.apache.wicket.markup.html.form.AbstractTextComponent extends FormComponent<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.Button extends FormComponent<java.lang.String> implements Serializable

serialVersionUID: 1L

Serialized Fields

defaultFormProcessing

boolean defaultFormProcessing
If false, all standard processing like validating and model updating is skipped.

Class org.apache.wicket.markup.html.form.Check extends LabeledWebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

uuid

short uuid
page-scoped uuid of this check. this property must not be accessed directly, instead Check.getValue() must be used


group

CheckGroup<T> group

Class org.apache.wicket.markup.html.form.CheckBox extends FormComponent<java.lang.Boolean> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.CheckBoxMultipleChoice extends ListMultipleChoice<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

prefix

java.lang.String prefix

suffix

java.lang.String suffix

Class org.apache.wicket.markup.html.form.CheckGroup extends FormComponent<java.util.Collection<T>> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.CheckGroup$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.markup.html.form.CheckGroupSelector extends LabeledWebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

group

CheckGroup<T> group

Class org.apache.wicket.markup.html.form.ChoiceRenderer extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

displayExpression

java.lang.String displayExpression
expression for getting the display value.


idExpression

java.lang.String idExpression
expression for getting the id.

Class org.apache.wicket.markup.html.form.DropDownChoice extends AbstractSingleSelectChoice<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.EnumChoiceRenderer extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

resourceSource

Component resourceSource
component used to resolve i18n resources for this renderer.

Class org.apache.wicket.markup.html.form.Form extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

defaultSubmittingComponent

IFormSubmittingComponent defaultSubmittingComponent
Any default IFormSubmittingComponent. If set, a hidden submit component will be rendered right after the form tag, so that when users press enter in a textfield, this submit component's action will be selected. If no default IFormSubmittingComponent is set, nothing additional is rendered.

WARNING: note that this is a best effort only. Unfortunately having a 'default' IFormSubmittingComponent in a form is ill defined in the standards, and of course IE has it's own way of doing things.


formValidators

java.lang.Object formValidators
multi-validators assigned to this form


maxSize

Bytes maxSize
Maximum size of an upload in bytes. If null, the setting IApplicationSettings.getDefaultMaximumUploadSize() is used.


multiPart

boolean multiPart
True if the form has enctype of multipart/form-data

Class org.apache.wicket.markup.html.form.FormComponent extends LabeledWebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

rawInput

java.lang.String rawInput
Raw Input entered by the user or NO_RAW_INPUT if nothing is filled in.


typeName

java.lang.String typeName
Type that the raw input string will be converted to


validators

java.lang.Object validators
The list of validators for this form component as either an IValidator instance or an array of IValidator instances.

Class org.apache.wicket.markup.html.form.FormComponentLabel extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

component

LabeledWebMarkupContainer component

Class org.apache.wicket.markup.html.form.FormComponentPanel extends FormComponent<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

markupHelper

ContainerWithAssociatedMarkupHelper markupHelper

wasOpenCloseTag

boolean wasOpenCloseTag
If if tag was an open-close tag

Class org.apache.wicket.markup.html.form.HiddenField extends TextField<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.ImageButton extends Button implements Serializable

serialVersionUID: 1L

Serialized Fields

localizedImageResource

LocalizedImageResource localizedImageResource
The image resource this image component references

Class org.apache.wicket.markup.html.form.LabeledWebMarkupContainer extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

labelModel

IModel<T> labelModel
The value will be made available to the validator property by means of ${label}. It does not have any specific meaning to FormComponent itself.

Class org.apache.wicket.markup.html.form.ListChoice extends DropDownChoice<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

maxRows

int maxRows
The maximum number of rows to display.

Class org.apache.wicket.markup.html.form.ListMultipleChoice extends AbstractChoice<java.util.Collection<T>,T> implements Serializable

serialVersionUID: 1L

Serialized Fields

maxRows

int maxRows
The maximum number of rows to display.

Class org.apache.wicket.markup.html.form.PasswordTextField extends TextField<java.lang.String> implements Serializable

serialVersionUID: 1L

Serialized Fields

resetPassword

boolean resetPassword
Flag indicating whether the contents of the field should be reset each time it is rendered. If true, the contents are emptied when the field is rendered. This is useful for login forms. If false, the contents of the model are put into the field. This is useful for entry forms where the contents of the model should be editable, or resubmitted.

Class org.apache.wicket.markup.html.form.Radio extends LabeledWebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

uuid

short uuid
page-scoped uuid of this check. this property must not be accessed directly, instead Radio.getValue() must be used


group

RadioGroup<T> group

Class org.apache.wicket.markup.html.form.RadioChoice extends AbstractSingleSelectChoice<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

prefix

java.lang.String prefix

suffix

java.lang.String suffix

Class org.apache.wicket.markup.html.form.RadioGroup extends FormComponent<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.RadioGroup$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.markup.html.form.RequiredTextField extends TextField<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.SimpleFormComponentLabel extends FormComponentLabel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.StatelessForm extends Form<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.SubmitLink extends AbstractSubmitLink implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.TextArea extends AbstractTextComponent<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.TextField extends AbstractTextComponent<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.ValidationErrorFeedback extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

error

IValidationError error
error object


message

java.lang.String message
error message


Package org.apache.wicket.markup.html.form.persistence

Class org.apache.wicket.markup.html.form.persistence.CookieValuePersister extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

settings

CookieValuePersisterSettings settings

Class org.apache.wicket.markup.html.form.persistence.CookieValuePersisterSettings extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

maxAge

int maxAge
Max age that the component will be persisted in seconds.


comment

java.lang.String comment
Cookie comment.


domain

java.lang.String domain
Cookie domain.


secure

boolean secure
Whether the cookie is secure.


version

int version
Cookie version.


Package org.apache.wicket.markup.html.form.upload

Class org.apache.wicket.markup.html.form.upload.FileUpload extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

item

FileItem item

Class org.apache.wicket.markup.html.form.upload.FileUploadField extends FormComponent<FileUpload> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.upload.MultiFileUploadField extends FormComponentPanel<java.util.Collection<FileUpload>> implements Serializable

serialVersionUID: 1L

Serialized Fields

upload

WebComponent upload

container

WebMarkupContainer container

max

int max

Package org.apache.wicket.markup.html.form.validation

Class org.apache.wicket.markup.html.form.validation.AbstractFormValidator extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.validation.EqualInputValidator extends AbstractFormValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

components

FormComponent<T>[] components
form components to be checked.

Class org.apache.wicket.markup.html.form.validation.EqualPasswordInputValidator extends EqualInputValidator implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.validation.FormComponentFeedbackBorder extends Border implements Serializable

serialVersionUID: 1L

Serialized Fields

visible

boolean visible
Visible property cache.

Class org.apache.wicket.markup.html.form.validation.FormComponentFeedbackIndicator extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

filter

IFeedbackMessageFilter filter
The message filter for this indicator component


Package org.apache.wicket.markup.html.image

Class org.apache.wicket.markup.html.image.ContextImage extends WebComponent implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.image.ContextPathGenerator extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

contextRelativePath

IModel<T> contextRelativePath

Class org.apache.wicket.markup.html.image.Image extends WebComponent implements Serializable

serialVersionUID: 1L

Serialized Fields

localizedImageResource

LocalizedImageResource localizedImageResource
The image resource this image component references

Class org.apache.wicket.markup.html.image.NonCachingImage extends Image implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.image.resource

Class org.apache.wicket.markup.html.image.resource.BlobImageResource extends DynamicImageResource implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.image.resource.BufferedDynamicImageResource extends DynamicImageResource implements Serializable

serialVersionUID: 1L

Serialized Fields

imageData

byte[] imageData
The byte array holding the contents of the dynamic image

Class org.apache.wicket.markup.html.image.resource.DefaultButtonImageResource extends RenderedDynamicImageResource implements Serializable

serialVersionUID: 1L

Serialized Fields

arcHeight

int arcHeight
The height of the arc in the corner


arcWidth

int arcWidth
The width of the arc in the corner


backgroundColorRgb

int backgroundColorRgb
The background color behind the button


colorRgb

int colorRgb
The color of the button itself


fontAttributes

java.util.Map<K,V> fontAttributes
The font to use


textColorRgb

int textColorRgb
The color of the text


label

java.lang.String label
The button label

Class org.apache.wicket.markup.html.image.resource.DynamicImageResource extends DynamicWebResource implements Serializable

serialVersionUID: 1L

Serialized Fields

format

java.lang.String format
The image type


lastModifiedTime

Time lastModifiedTime
The last modified time of this resource

Class org.apache.wicket.markup.html.image.resource.LocalizedImageResource extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

resourceKind

java.lang.Boolean resourceKind
What kind of resource it is. TRUE==Resource is set, FALSE==ResourceReference is set, null none


component

Component component
The component that is referencing this image resource


resource

Resource resource
The image resource this image component references


resourceReference

ResourceReference resourceReference
The resource reference


resourceParameters

ValueMap resourceParameters
The resource parameters


locale

java.util.Locale locale
The locale of the image resource


style

java.lang.String style
The style of the image resource

Class org.apache.wicket.markup.html.image.resource.RenderedDynamicImageResource extends DynamicImageResource implements Serializable

serialVersionUID: 1L

Serialized Fields

height

int height
Height of image


type

int type
Type of image (one of BufferedImage.TYPE_*)


width

int width
Width of image


Package org.apache.wicket.markup.html.include

Class org.apache.wicket.markup.html.include.Include extends WebComponent implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.internal

Class org.apache.wicket.markup.html.internal.Enclosure extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

childComponent

Component childComponent
The child component to delegate the isVisible() call to


childId

java.lang.CharSequence childId
Id of the child component that will control visibility of the enclosure

Class org.apache.wicket.markup.html.internal.HtmlHeaderContainer extends WebMarkupContainer implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.link

Class org.apache.wicket.markup.html.link.AbstractLink extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

beforeDisabledLink

java.lang.String beforeDisabledLink
Simple insertion string to allow disabled links to look like Disabled link .


afterDisabledLink

java.lang.String afterDisabledLink
Simple insertion string to allow disabled links to look like Disabled link .

Class org.apache.wicket.markup.html.link.BookmarkablePageLink extends Link<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

pageClassName

java.lang.String pageClassName
The page class that this link links to.


pageMapName

java.lang.String pageMapName
Any page map for this link


parameters

MiniMap<K,V> parameters
The parameters to pass to the class constructor when instantiated.

Class org.apache.wicket.markup.html.link.DownloadLink extends Link<java.io.File> implements Serializable

serialVersionUID: 1L

Serialized Fields

fileName

java.lang.String fileName
File name to stream


deleteAfter

boolean deleteAfter

Class org.apache.wicket.markup.html.link.ExternalLink extends AbstractLink implements Serializable

serialVersionUID: 1L

Serialized Fields

label

IModel<T> label
this links' label.


contextRelative

boolean contextRelative

popupSettings

PopupSettings popupSettings
The popup specification. If not-null, a javascript on-click event handler will be generated that opens a new window using the popup properties.

Class org.apache.wicket.markup.html.link.ImageMap extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

shapeLinks

java.util.List<E> shapeLinks
list of shape links.

Class org.apache.wicket.markup.html.link.InlineFrame extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

pageLink

IPageLink pageLink
The link.


pageMapName

java.lang.String pageMapName
The pagemap name where the page that will be created by this inline frame will be created in.

Class org.apache.wicket.markup.html.link.InternalFrame extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

pageLink

IPageLink pageLink
Deprecated. 
The link.


pageMapName

java.lang.String pageMapName
Deprecated. 
The pagemap name where the page that will be created by this inline frame will be created in.

Class org.apache.wicket.markup.html.link.Link extends AbstractLink implements Serializable

serialVersionUID: 1L

Serialized Fields

anchor

Component anchor
An anchor (form 'http://server/app/etc#someAnchor') will be appended to the link so that after this link executes, it will jump to the provided anchor component's position. The provided anchor must either have the Component.getOutputMarkupId() flag true, or it must be attached to a <a tag with a href attribute of more than one character starting with '#' ('<a href="#someAnchor" ... ').


autoEnable

boolean autoEnable
True if link should automatically enable/disable based on current page; false by default.


popupSettings

PopupSettings popupSettings
The popup specification. If not-null, a javascript on-click event handler will be generated that opens a new window using the popup properties.

Class org.apache.wicket.markup.html.link.PageLink extends Link<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

pageLink

IPageLink pageLink
Deprecated. 
The delayed linking Page source.

Class org.apache.wicket.markup.html.link.PopupCloseLink extends Link<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.link.PopupCloseLink.ClosePopupPage extends WebPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.link.PopupSettings extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

displayFlags

int displayFlags
Display flags


height

int height
Height of popup window.


left

int left
Left position of popup window.


target

java.lang.String target
The target to put in JavaScript. This implementation simply refers to the href element, but clients may want to override this (e.g. when the HTML element is not an anchor).


top

int top
Top position of popup window.


width

int width
Width of popup window.


windowName

java.lang.String windowName
The logical name of the window. This can be anything you want, although you should use alphanumeric characters only (no spaces or punctuation). If you have a window already open and call window.open a second time using the same windowName, the first window will be reused rather than opening a second window.


pageMapName

java.lang.String pageMapName
The pagemap name where the page that will be created by this popuplink will be created in.

Class org.apache.wicket.markup.html.link.ResourceLink extends Link<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

resourceReference

ResourceReference resourceReference
The Resource reference


resource

Resource resource
The Resource


resourceParameters

ValueMap resourceParameters
The resource parameters

Class org.apache.wicket.markup.html.link.StatelessLink extends Link<java.lang.Void> implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.list

Class org.apache.wicket.markup.html.list.ListItem extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

index

int index
The index of the ListItem in the parent ListView

Class org.apache.wicket.markup.html.list.ListItemModel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

listView

ListView<T> listView
The ListView itself


index

int index
The list item's index

Class org.apache.wicket.markup.html.list.ListView extends AbstractRepeater implements Serializable

serialVersionUID: 1L

Serialized Fields

firstIndex

int firstIndex
Index of the first item to show


reuseItems

boolean reuseItems
If true, re-rendering the list view is more efficient if the window doesn't get changed at all or if it gets scrolled (compared to paging). But if you modify the listView model object, than you must manually call listView.removeAll() in order to rebuild the ListItems. If you nest a ListView in a Form, ALWAYS set this property to true, as otherwise validation will not work properly.


viewSize

int viewSize
Max number (not index) of items to show

Class org.apache.wicket.markup.html.list.ListView$3$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.markup.html.list.Loop extends AbstractRepeater implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.list.Loop.LoopItem extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

iteration

int iteration
The iteration number

Class org.apache.wicket.markup.html.list.OddEvenListItem extends ListItem<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.list.PageableListView extends ListView<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

currentPage

int currentPage
The page to show.


rowsPerPage

int rowsPerPage
Number of rows per page of the list view.

Class org.apache.wicket.markup.html.list.PropertyListView extends ListView<T> implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.navigation.paging

Class org.apache.wicket.markup.html.navigation.paging.PagingNavigation extends Loop implements Serializable

serialVersionUID: 1L

Serialized Fields

pageable

IPageable pageable
The PageableListView this navigation is navigating.


labelProvider

IPagingLabelProvider labelProvider
The label provider for the text that the links should be displaying.


startIndex

int startIndex
Offset for the Loop


margin

int margin
Number of links on the left and/or right to keep the current page link somewhere near the middle.


separator

java.lang.String separator
Default separator between page numbers. Null: no separator.


viewSize

int viewSize
The maximum number of page links to show.

Class org.apache.wicket.markup.html.navigation.paging.PagingNavigationIncrementLink extends Link<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

increment

int increment
The increment.


pageable

IPageable pageable
The PageableListView the page links are referring to.

Class org.apache.wicket.markup.html.navigation.paging.PagingNavigationLink extends Link<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

pageable

IPageable pageable
The pageable list view.


pageNumber

int pageNumber
The page of the PageableListView this link is for.

Class org.apache.wicket.markup.html.navigation.paging.PagingNavigator extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

pagingNavigation

PagingNavigation pagingNavigation
The navigation bar to be printed, e.g. 1 | 2 | 3 etc.


pageable

IPageable pageable

labelProvider

IPagingLabelProvider labelProvider

Package org.apache.wicket.markup.html.pages

Class org.apache.wicket.markup.html.pages.AccessDeniedPage extends WebPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.pages.BrowserInfoForm extends Panel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.pages.BrowserInfoForm.ClientPropertiesBean extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

navigatorAppCodeName

java.lang.String navigatorAppCodeName

navigatorAppName

java.lang.String navigatorAppName

navigatorAppVersion

java.lang.String navigatorAppVersion

navigatorCookieEnabled

java.lang.Boolean navigatorCookieEnabled

navigatorJavaEnabled

java.lang.Boolean navigatorJavaEnabled

navigatorLanguage

java.lang.String navigatorLanguage

navigatorPlatform

java.lang.String navigatorPlatform

navigatorUserAgent

java.lang.String navigatorUserAgent

screenColorDepth

java.lang.String screenColorDepth

screenHeight

java.lang.String screenHeight

screenWidth

java.lang.String screenWidth

utcOffset

java.lang.String utcOffset

utcDSTOffset

java.lang.String utcDSTOffset

browserWidth

java.lang.String browserWidth

browserHeight

java.lang.String browserHeight

Class org.apache.wicket.markup.html.pages.BrowserInfoPage extends WebPage implements Serializable

serialVersionUID: 1L

Serialized Fields

continueTo

java.lang.String continueTo
the url to continue to after this page.

Class org.apache.wicket.markup.html.pages.ExceptionErrorPage extends WebPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.pages.InternalErrorPage extends WebPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.pages.PageExpiredErrorPage extends WebPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.pages.RedirectPage extends WebPage implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.panel

Class org.apache.wicket.markup.html.panel.ComponentFeedbackPanel extends FeedbackPanel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.panel.EmptyPanel extends Panel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.panel.FeedbackPanel extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

messageListView

org.apache.wicket.markup.html.panel.FeedbackPanel.MessageListView messageListView
Message view

Class org.apache.wicket.markup.html.panel.Fragment extends WebMarkupContainerWithAssociatedMarkup implements Serializable

serialVersionUID: 1L

Serialized Fields

markupId

java.lang.String markupId
The wicket:id of the associated markup fragment


markupProvider

MarkupContainer markupProvider
The container providing the inline markup

Class org.apache.wicket.markup.html.panel.Panel extends WebMarkupContainerWithAssociatedMarkup implements Serializable

serialVersionUID: 1L

Serialized Fields

wasOpenCloseTag

boolean wasOpenCloseTag
If if tag was an open-close tag


Package org.apache.wicket.markup.html.resources

Class org.apache.wicket.markup.html.resources.CompressedPackageResourceReference extends PackageResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.resources.CompressedResourceReference extends ResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.resources.JavaScriptReference extends PackagedResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.resources.JavascriptResourceReference extends ResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.resources.PackagedResourceReference extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.resources.StyleSheetReference extends PackagedResourceReference implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.html.tree

Class org.apache.wicket.markup.html.tree.AbstractTree extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

attached

boolean attached

deleteIds

AppendingStringBuffer deleteIds
comma separated list of ids of elements to be deleted.


dirtyAll

boolean dirtyAll
whether the whole tree is dirty (so the whole tree needs to be refreshed).


dirtyItems

java.util.List<E> dirtyItems
list of dirty items. if children property of these items is null, the children will be rebuild.


dirtyItemsCreateDOM

java.util.List<E> dirtyItemsCreateDOM
list of dirty items which need the DOM structure to be created for them (added items)


idCounter

int idCounter
counter for generating unique ids of every tree item.


itemContainer

org.apache.wicket.markup.html.tree.AbstractTree.TreeItemContainer itemContainer
Component whose children are tree items.


nodeToItemMap

java.util.Map<K,V> nodeToItemMap
map that maps TreeNode to TreeItem. TreeItems only exists for TreeNodes, that are visible (their parents are not collapsed).


previousModel

javax.swing.tree.TreeModel previousModel
we need to track previous model. if the model changes, we unregister the tree from listeners of old model and register the tree as listener of new model.


rootItem

org.apache.wicket.markup.html.tree.AbstractTree.TreeItem rootItem
root item of the tree.


rootLess

boolean rootLess
whether the tree root is shown.


state

ITreeState state
stores reference to tree state.

Class org.apache.wicket.markup.html.tree.BaseTree extends AbstractTree implements Serializable

serialVersionUID: 1L

Serialized Fields

linkType

BaseTree.LinkType linkType

Class org.apache.wicket.markup.html.tree.BaseTree.LinkType extends EnumeratedType implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.tree.DefaultTreeState extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

allowSelectMultiple

boolean allowSelectMultiple
Whether multiple selections can be done.


listeners

java.util.List<E> listeners
Tree state listeners.


nodes

java.util.Set<E> nodes
set of nodes which are collapsed or expanded (depends on nodesCollapsed variable).


nodesCollapsed

boolean nodesCollapsed
Whether the nodes set should be treated as set of collapsed or expanded nodes.


selectedNodes

java.util.Set<E> selectedNodes
Set selected nodes.

Class org.apache.wicket.markup.html.tree.LabelIconPanel extends Panel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.tree.LabelTree extends BaseTree implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.tree.LinkIconPanel extends LabelIconPanel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.tree.LinkTree extends LabelTree implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.tree.WicketTreeModel extends GenericBaseModel<javax.swing.tree.TreeModel> implements Serializable


Package org.apache.wicket.markup.parser

Class org.apache.wicket.markup.parser.TagAttributes extends ValueMap implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.parser.XmlTag.Type extends EnumeratedType implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.parser.filter

Class org.apache.wicket.markup.parser.filter.RelativePathPrefixHandler extends AbstractMarkupFilter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.parser.filter.WicketMessageTagHandler extends AbstractMarkupFilter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.parser.filter.WicketMessageTagHandler.AttributeLocalizer extends AbstractBehavior implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.repeater

Class org.apache.wicket.markup.repeater.AbstractPageableView extends RefreshingView<T> implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

itemsPerPage

int itemsPerPage
Keeps track of the number of items we show per page. The default is Integer.MAX_VALUE which effectively disables paging.


currentPage

int currentPage
Keeps track of the current page number.

Class org.apache.wicket.markup.repeater.AbstractRepeater extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.repeater.DefaultItemReuseStrategy extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.repeater.DefaultItemReuseStrategy$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.markup.repeater.Item extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

index

int index
relative index of this item

Class org.apache.wicket.markup.repeater.OddEvenItem extends Item<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.repeater.RefreshingView extends RepeatingView implements Serializable

serialVersionUID: 1L

Serialized Fields

itemReuseStrategy

IItemReuseStrategy itemReuseStrategy
The item reuse strategy that will be used to recycle items when the page is changed or the view is redrawn.

See Also:
IItemReuseStrategy

Class org.apache.wicket.markup.repeater.RefreshingView$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.markup.repeater.RepeatingView extends AbstractRepeater implements Serializable

serialVersionUID: 1L

Serialized Fields

childIdCounter

long childIdCounter
Counter used for generating unique child component ids.

Class org.apache.wicket.markup.repeater.ReuseIfModelsEqualStrategy extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.repeater.ReuseIfModelsEqualStrategy$1 extends java.lang.Object implements Serializable


Package org.apache.wicket.markup.repeater.data

Class org.apache.wicket.markup.repeater.data.DataView extends DataViewBase<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.repeater.data.DataViewBase extends AbstractPageableView<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

dataProvider

IDataProvider<T> dataProvider

Class org.apache.wicket.markup.repeater.data.DefaultDataProvider extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.repeater.data.EmptyDataProvider extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.repeater.data.GridView extends DataViewBase<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

columns

int columns

rows

int rows

Class org.apache.wicket.markup.repeater.data.ListDataProvider extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

list

java.util.List<E> list
reference to the list used as dataprovider for the dataview


Package org.apache.wicket.markup.resolver

Class org.apache.wicket.markup.resolver.AutoComponentResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

nestedComponents

java.util.Map<K,V> nestedComponents
Temporary storage for containers currently being rendered. Thus child components can be re-parented. Remember: are an exception to the rule. Though the markup of the children are nested inside , their respective Java components are not. They must be added to the parent container of .

Class org.apache.wicket.markup.resolver.AutoLinkResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

tagNameToAutolinkResolverDelegates

java.util.Map<K,V> tagNameToAutolinkResolverDelegates
Autolink resolver delegates for constructing new autolinks reference keyed on tag name (such as <script> or <a>.


tagNameToTagReferenceResolvers

java.util.Map<K,V> tagNameToTagReferenceResolvers
Resolver objects that know what attribute to read for getting the reference keyed on tag name (such as <script> or <a>.

Class org.apache.wicket.markup.resolver.AutoLinkResolver.AutolinkBookmarkablePageLink extends BookmarkablePageLink<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

anchor

java.lang.String anchor

Class org.apache.wicket.markup.resolver.BorderBodyResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.EnclosureResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.FragmentResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.HtmlHeaderResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.MarkupInheritanceResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.ParentResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.ScopedComponentResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.WicketContainerResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.WicketLinkResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.WicketMessageResolver extends java.lang.Object implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.transformer

Class org.apache.wicket.markup.transformer.AbstractOutputTransformerContainer extends MarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

transformBodyOnly

boolean transformBodyOnly
Whether the containers tag shall be transformed as well

Class org.apache.wicket.markup.transformer.AbstractTransformerBehavior extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

webResponse

Response webResponse

Class org.apache.wicket.markup.transformer.NoopOutputTransformerContainer extends AbstractOutputTransformerContainer implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.transformer.XsltOutputTransformerContainer extends AbstractOutputTransformerContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

xslFile

java.lang.String xslFile
An optional xsl file path

Class org.apache.wicket.markup.transformer.XsltTransformerBehavior extends AbstractTransformerBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

xslFile

java.lang.String xslFile
An optional xsl file path


Package org.apache.wicket.model

Class org.apache.wicket.model.AbstractPropertyModel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

target

java.lang.Object target
Any model object (which may or may not implement IModel)

Class org.apache.wicket.model.AbstractReadOnlyModel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.AbstractWrapModel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.BoundCompoundPropertyModel extends CompoundPropertyModel<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

bindings

java.util.ArrayList<E> bindings
Deprecated. 
List of Bindings. Although a Map would be a more natural implementation here, a List is much more compact in terms of space. Although it may take longer to find a component binding in theory, in practice it's unlikely that any BoundCompoundPropertyModel will really have enough bindings to matter.

Class org.apache.wicket.model.ComponentDetachableModel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.ComponentModel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.ComponentPropertyModel extends AbstractReadOnlyModel<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

propertyName

java.lang.String propertyName
Name of property to read

Class org.apache.wicket.model.CompoundPropertyModel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

target

java.lang.Object target

Class org.apache.wicket.model.LoadableDetachableModel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.Model extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

object

java.io.Serializable object
Backing object.

Class org.apache.wicket.model.PropertyModel extends AbstractPropertyModel<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

expression

java.lang.String expression
Property expression for property access.

Class org.apache.wicket.model.ResourceModel extends AbstractReadOnlyModel<java.lang.String> implements Serializable

serialVersionUID: 1L

Serialized Fields

resourceKey

java.lang.String resourceKey

defaultValue

java.lang.String defaultValue

Class org.apache.wicket.model.StringResourceModel extends LoadableDetachableModel<java.lang.String> implements Serializable

serialVersionUID: 1L

Serialized Fields

model

IModel<T> model
The wrapped model.


parameters

java.lang.Object[] parameters
Optional parameters.


component

Component component
The relative component used for lookups.


resourceKey

java.lang.String resourceKey
The key of message to get.


defaultValue

java.lang.String defaultValue
The default value of the message.


Package org.apache.wicket.model.util

Class org.apache.wicket.model.util.CollectionModel extends GenericBaseModel<java.util.Collection<T>> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.util.GenericBaseModel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

object

java.lang.Object object
model object

Class org.apache.wicket.model.util.ListModel extends GenericBaseModel<java.util.List<T>> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.util.MapModel extends GenericBaseModel<java.util.Map<K,V>> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.util.SetModel extends GenericBaseModel<java.util.Set<T>> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.util.WildcardCollectionModel extends GenericBaseModel<java.util.Collection<? extends T>> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.util.WildcardListModel extends GenericBaseModel<java.util.List<? extends T>> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.model.util.WildcardSetModel extends GenericBaseModel<java.util.Set<? extends T>> implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.protocol.http

Class org.apache.wicket.protocol.http.AbstractHttpSessionStore.SessionBindingListener extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

applicationKey

java.lang.String applicationKey
The unique key of the application within this web application.


sessionId

java.lang.String sessionId
Session id.


unbound

boolean unbound
Whether it is already unbound.

Class org.apache.wicket.protocol.http.ClientProperties extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

browserHeight

int browserHeight

browserInternetExplorer

boolean browserInternetExplorer

browserKonqueror

boolean browserKonqueror

browserMozilla

boolean browserMozilla

browserMozillaFirefox

boolean browserMozillaFirefox

browserOpera

boolean browserOpera

browserSafari

boolean browserSafari

browserVersionMajor

int browserVersionMajor

browserVersionMinor

int browserVersionMinor

browserWidth

int browserWidth

cookiesEnabled

boolean cookiesEnabled

javaEnabled

boolean javaEnabled

navigatorAppCodeName

java.lang.String navigatorAppCodeName

navigatorAppName

java.lang.String navigatorAppName

navigatorAppVersion

java.lang.String navigatorAppVersion

navigatorLanguage

java.lang.String navigatorLanguage

navigatorPlatform

java.lang.String navigatorPlatform

navigatorUserAgent

java.lang.String navigatorUserAgent

proprietaryIECssExpressionsSupported

boolean proprietaryIECssExpressionsSupported

proprietaryIEPngAlphaFilterRequired

boolean proprietaryIEPngAlphaFilterRequired

quirkCssBackgroundAttachmentUseFixed

boolean quirkCssBackgroundAttachmentUseFixed

quirkCssBorderCollapseFor0Padding

boolean quirkCssBorderCollapseFor0Padding

quirkCssBorderCollapseInside

boolean quirkCssBorderCollapseInside

quirkCssPositioningOneSideOnly

boolean quirkCssPositioningOneSideOnly

quirkIERepaint

boolean quirkIERepaint

quirkIESelectListDomUpdate

boolean quirkIESelectListDomUpdate

quirkIESelectPercentWidth

boolean quirkIESelectPercentWidth

quirkIESelectZIndex

boolean quirkIESelectZIndex

quirkIETablePercentWidthScrollbarError

boolean quirkIETablePercentWidthScrollbarError

quirkIETextareaNewlineObliteration

boolean quirkIETextareaNewlineObliteration

quirkMozillaPerformanceLargeDomRemove

boolean quirkMozillaPerformanceLargeDomRemove

quirkMozillaTextInputRepaint

boolean quirkMozillaTextInputRepaint

remoteAddress

java.lang.String remoteAddress

screenColorDepth

int screenColorDepth

screenHeight

int screenHeight

screenWidth

int screenWidth

timeZone

java.util.TimeZone timeZone
Cached timezone for repeating calls to ClientProperties.getTimeZone()


utcDSTOffset

java.lang.String utcDSTOffset

utcOffset

java.lang.String utcOffset

Class org.apache.wicket.protocol.http.IgnoreAjaxRequestException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.protocol.http.MockHttpSession extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

attributes

ValueMap attributes

context

javax.servlet.ServletContext context

creationTime

long creationTime

id

java.lang.String id

lastAccessedTime

long lastAccessedTime

temporary

boolean temporary

Class org.apache.wicket.protocol.http.PageExpiredException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.protocol.http.ReloadingWicketServlet extends WicketServlet implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.protocol.http.RequestLogger.RequestData extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

startDate

long startDate

timeTaken

long timeTaken

entries

java.util.List<E> entries

eventTarget

java.lang.String eventTarget

responseTarget

java.lang.String responseTarget

sessionId

java.lang.String sessionId

totalSessionSize

long totalSessionSize

sessionInfo

java.lang.Object sessionInfo

activeRequest

int activeRequest

Class org.apache.wicket.protocol.http.RequestLogger.SessionData extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

sessionId

java.lang.String sessionId

startDate

long startDate

lastActive

long lastActive

numberOfRequests

long numberOfRequests

totalTimeTaken

long totalTimeTaken

sessionSize

long sessionSize

sessionInfo

java.lang.Object sessionInfo

Class org.apache.wicket.protocol.http.WebApplicationFactoryCreationException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.protocol.http.WebSession extends Session implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.protocol.http.WicketServlet extends javax.servlet.http.HttpServlet implements Serializable

serialVersionUID: 1L

Serialized Fields

wicketFilter

WicketFilter wicketFilter
The WicketFilter where all the handling is done


Package org.apache.wicket.protocol.http.pagestore

Class org.apache.wicket.protocol.http.pagestore.AbstractPageStore.SerializedPage extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

pageId

int pageId

pageMapName

java.lang.String pageMapName

versionNumber

int versionNumber

ajaxVersionNumber

int ajaxVersionNumber

data

byte[] data

Class org.apache.wicket.protocol.http.pagestore.DiskPageStore.PageMapEntry extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

pageMapName

java.lang.String pageMapName

fileName

java.lang.String fileName

manager

PageWindowManager manager

Class org.apache.wicket.protocol.http.pagestore.DiskPageStore.SessionEntry extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

sessionId

java.lang.String sessionId

pageMapEntryList

java.util.List<E> pageMapEntryList

Class org.apache.wicket.protocol.http.pagestore.PageWindowManager extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

windows

java.util.List<E> windows

idToWindowIndices

IntHashMap<V> idToWindowIndices

indexPointer

int indexPointer

totalSize

int totalSize

maxSize

int maxSize

Package org.apache.wicket.protocol.http.request

Class org.apache.wicket.protocol.http.request.CryptedUrlWebRequestCodingStrategy.HackAttackException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.protocol.http.request.InvalidUrlException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.protocol.http.request.WebClientInfo extends ClientInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

userAgent

java.lang.String userAgent
The user agent string from the User-Agent header, app. Theoretically, this might differ from ClientProperties.isJavaEnabled() property, which is not set until an actual reply from a browser (e.g. using BrowserInfoPage is set.


properties

ClientProperties properties
Client properties object.


Package org.apache.wicket.protocol.http.request.urlcompressing

Class org.apache.wicket.protocol.http.request.urlcompressing.UrlCompressor extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

uid

int uid

Package org.apache.wicket.protocol.http.servlet

Class org.apache.wicket.protocol.http.servlet.AbortWithHttpStatusException extends AbstractRestartResponseException implements Serializable

serialVersionUID: 1L

Serialized Fields

status

int status

Class org.apache.wicket.protocol.http.servlet.AbortWithWebErrorCodeException extends AbstractRestartResponseException implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

int errorCode

Package org.apache.wicket.request

Class org.apache.wicket.request.ClientInfo extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.request.RequestParameters extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

componentPath

java.lang.String componentPath
the full path to a component (might be just the page).


pageMapName

java.lang.String pageMapName
any name of the page map.


versionNumber

int versionNumber
any version number; 0 for no version.


onlyProcessIfPathActive

boolean onlyProcessIfPathActive
FIXME javadoc


interfaceName

java.lang.String interfaceName
any callable interface name (e.g. ILinkListener).


behaviorId

java.lang.String behaviorId
in case this request points to a dispatched call to a behavior that is coupled to a component, this is the registration id of the behavior.


componentId

java.lang.String componentId
any id of a non-page target component.


bookmarkablePageClass

java.lang.String bookmarkablePageClass
any bookmarkable page class.


parameters

java.util.Map<K,V> parameters
free-to-use map of non-reserved parameters.


resourceKey

java.lang.String resourceKey
any resource key.


path

java.lang.String path
the path info.


urlDepth

int urlDepth
depth of the page for relative URLs.


queryString

java.lang.String queryString
the request query string


Package org.apache.wicket.resource

Class org.apache.wicket.resource.ByteArrayResource extends WebResource implements Serializable

serialVersionUID: 1L

Serialized Fields

contentType

java.lang.String contentType
the content type.


array

byte[] array
binary data.


locale

java.util.Locale locale
the locale.


lastModified

Time lastModified
the time that this resource was last modified; same as construction time.


filename

java.lang.String filename

Class org.apache.wicket.resource.ContextRelativeResource extends WebResource implements Serializable

serialVersionUID: 1L

Serialized Fields

path

java.lang.String path

Class org.apache.wicket.resource.DynamicByteArrayResource extends WebResource implements Serializable

serialVersionUID: 1L

Serialized Fields

locale

java.util.Locale locale
Deprecated. 
the locale.


Package org.apache.wicket.session.pagemap

Class org.apache.wicket.session.pagemap.AbstractPageMapEntry extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

short id

Class org.apache.wicket.session.pagemap.LeastRecentlyAccessedEvictionStrategy extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

maxVersions

int maxVersions
Maximum number of page versions in a page map before evictions start


Package org.apache.wicket.settings

Class org.apache.wicket.settings.IExceptionSettings.UnexpectedExceptionDisplay extends EnumeratedType implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.settings.IRequestCycleSettings.RenderStrategy extends EnumeratedType implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.collections

Class org.apache.wicket.util.collections.ArrayListStack extends java.util.ArrayList<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.collections.ConcurrentHashSet extends java.util.AbstractSet<E> implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream inputStream)
                 throws java.lang.ClassNotFoundException,
                        java.io.IOException
Re-constitute the HashSet instance from a stream.

Throws:
java.lang.ClassNotFoundException
java.io.IOException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Throws:
java.io.IOException

Class org.apache.wicket.util.collections.IntHashMap extends java.lang.Object implements Serializable

serialVersionUID: 362498820763181265L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reconstitute the HashMap instance from a stream (i.e., deserialize it).

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Save the state of the HashMap instance to a stream (i.e., serialize it).

Serial Data:
The capacity of the HashMap (the length of the bucket array) is emitted (int), followed by the size of the HashMap (the number of key-value mappings), followed by the key (Object) and value (Object) for each key-value mapping represented by the HashMap The key-value mappings are emitted in the order that they are returned by entrySet().iterator().
Throws:
java.io.IOException
Serialized Fields

threshold

int threshold
The next size value at which to resize (capacity * load factor).

 

loadFactor

float loadFactor
The load factor for the hash table.

 

Class org.apache.wicket.util.collections.MicroMap extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

key

java.lang.Object key
The one and only key in this tiny map


value

java.lang.Object value
The value for the only key in this tiny map

Class org.apache.wicket.util.collections.MicroMap$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MicroMap$1$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MicroMap$2 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MicroMap$3 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MicroMap$3$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MicroMap$3$1$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MiniMap extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

keys

java.lang.Object[] keys
The array of keys. Keys that are null are not used.


values

java.lang.Object[] values
The array of values which correspond by index with the keys array.


size

int size
The number of valid entries


lastSearchIndex

int lastSearchIndex
The last search index. This makes putting and getting more efficient.

Class org.apache.wicket.util.collections.MiniMap$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MiniMap$1$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MiniMap$2 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MiniMap$3 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MiniMap$3$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MiniMap$3$1$1 extends java.lang.Object implements Serializable

Class org.apache.wicket.util.collections.MostRecentlyUsedMap extends java.util.LinkedHashMap<K,V> implements Serializable

serialVersionUID: 1L

Serialized Fields

removedValue

java.lang.Object removedValue
Value most recently removed from map


maxEntries

int maxEntries
Maximum number of entries allowed in this map


Package org.apache.wicket.util.convert

Class org.apache.wicket.util.convert.ConversionException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Serialized Fields

converter

IConverter converter
The converter that was used.


format

java.text.Format format
Pattern that was used for conversion.


locale

java.util.Locale locale
Locale that was used for conversion.


sourceValue

java.lang.Object sourceValue
The value that was tried to convert.


targetTypeName

java.lang.String targetTypeName
Target type for the failed conversion.


resourceKey

java.lang.String resourceKey
Resource key for the message that should be displayed


vars

java.util.Map<K,V> vars
Variable map to use in variable substitution

Class org.apache.wicket.util.convert.ConverterLocator extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

classToConverter

java.util.Map<K,V> classToConverter
Maps Classes to ITypeConverters.

Class org.apache.wicket.util.convert.MaskConverter extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

maskFormatter

javax.swing.text.MaskFormatter maskFormatter
Object that knows all about masks.


Package org.apache.wicket.util.convert.converters

Class org.apache.wicket.util.convert.converters.AbstractConverter extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.AbstractDecimalConverter extends AbstractNumberConverter implements Serializable

serialVersionUID: 1L

Serialized Fields

numberFormats

java.util.Map<K,V> numberFormats
The date format to use

Class org.apache.wicket.util.convert.converters.AbstractIntegerConverter extends AbstractNumberConverter implements Serializable

serialVersionUID: 1L

Serialized Fields

numberFormats

java.util.Map<K,V> numberFormats
The date format to use

Class org.apache.wicket.util.convert.converters.AbstractNumberConverter extends AbstractConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.BigDecimalConverter extends AbstractDecimalConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.BooleanConverter extends AbstractConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.ByteConverter extends AbstractIntegerConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.CharacterConverter extends AbstractConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.DateConverter extends AbstractConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.DoubleConverter extends AbstractDecimalConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.FloatConverter extends AbstractDecimalConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.IntegerConverter extends AbstractIntegerConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.LongConverter extends AbstractIntegerConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.ShortConverter extends AbstractIntegerConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.SqlDateConverter extends AbstractConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.SqlTimeConverter extends AbstractConverter implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.convert.converters.SqlTimestampConverter extends AbstractConverter implements Serializable

serialVersionUID: 1L

Serialized Fields

dateFormat

int dateFormat

timeFormat

int timeFormat

Class org.apache.wicket.util.convert.converters.ZeroPaddingIntegerConverter extends AbstractIntegerConverter implements Serializable

serialVersionUID: 1L

Serialized Fields

zeroPadLength

int zeroPadLength

Package org.apache.wicket.util.diff

Class org.apache.wicket.util.diff.DifferentiationFailedException extends DiffException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.diff.DiffException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.diff.PatchFailedException extends DiffException implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.file

Class org.apache.wicket.util.file.File extends java.io.File implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.file.Folder extends File implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.io

Class org.apache.wicket.util.io.SerializableChecker.WicketNotSerializableException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.io.WicketSerializeableException extends java.io.NotSerializableException implements Serializable

serialVersionUID: 1L

Serialized Fields

list

java.util.List<E> list

Package org.apache.wicket.util.lang

Class org.apache.wicket.util.lang.Bytes extends LongValue implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.lang.EnumeratedType extends StringValue implements Serializable

serialVersionUID: 1L

Serialization Methods

readResolve

public java.lang.Object readResolve()
                             throws java.io.ObjectStreamException
Method to ensure that == works after deserialization

Throws:
java.io.ObjectStreamException

Class org.apache.wicket.util.lang.PackageName extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

java.lang.String name

Class org.apache.wicket.util.lang.PropertyResolverConverter extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

converterSupplier

IConverterLocator converterSupplier

locale

java.util.Locale locale

Package org.apache.wicket.util.parse.metapattern

Class org.apache.wicket.util.parse.metapattern.BooleanGroup extends Group implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.parse.metapattern.FloatingPointGroup extends Group implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.parse.metapattern.Group extends MetaPattern implements Serializable

serialVersionUID: 1L

Serialized Fields

group

int group
The capturing group that this Group is bound to.

Class org.apache.wicket.util.parse.metapattern.GroupAlreadyBoundException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.parse.metapattern.GroupNotBoundException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.parse.metapattern.IntegerGroup extends Group implements Serializable

serialVersionUID: 1L

Serialized Fields

radix

int radix
The radix to use when converting Strings captured by this group.

Class org.apache.wicket.util.parse.metapattern.MetaPattern extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

pattern

java.util.regex.Pattern pattern
Compiled regular expression pattern, or null if patterns variable is valid instead


patterns

java.util.List<E> patterns
List of patterns, or null if pattern variable is valid instead


compiledPattern

java.util.regex.Pattern compiledPattern
The compiled MetaPattern

Class org.apache.wicket.util.parse.metapattern.OptionalMetaPattern extends MetaPattern implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.resource

Class org.apache.wicket.util.resource.AbstractResourceStream extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

charset

java.nio.charset.Charset charset
Charset for resource


locale

java.util.Locale locale

Class org.apache.wicket.util.resource.AbstractResourceStreamWriter extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

locale

java.util.Locale locale

Class org.apache.wicket.util.resource.AbstractStringResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

contentType

java.lang.String contentType
MIME content type


lastModified

Time lastModified
The last time this stylesheet was modified

Class org.apache.wicket.util.resource.FileResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

file

File file
Any associated file

Class org.apache.wicket.util.resource.PackageResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

resourceStream

IResourceStream resourceStream

Class org.apache.wicket.util.resource.ResourceStreamNotFoundException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.resource.StringBufferResourceStream extends AbstractStringResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

buffer

AppendingStringBuffer buffer
Stylesheet information

Class org.apache.wicket.util.resource.StringResourceStream extends AbstractStringResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

string

java.lang.CharSequence string
The string resource

Class org.apache.wicket.util.resource.UrlResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

url

java.net.URL url
The URL to this resource.


file

java.io.File file
the handle to the file if it is a file resource


contentLength

int contentLength
Length of stream.


contentType

java.lang.String contentType
Content type for stream.


lastModified

long lastModified
Last known time the stream was last modified.

Class org.apache.wicket.util.resource.WebExternalResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

in

java.io.InputStream in

url

java.lang.String url
the relative url of the external resource.

Class org.apache.wicket.util.resource.XSLTResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

out

java.io.ByteArrayOutputStream out

Class org.apache.wicket.util.resource.ZipResourceStream extends AbstractResourceStream implements Serializable

serialVersionUID: 1L

Serialized Fields

bytearray

java.io.ByteArrayOutputStream bytearray

Package org.apache.wicket.util.string

Class org.apache.wicket.util.string.AbstractStringList extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.string.AppendingStringBuffer extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
readObject is called to restore the state of the AppendingStringBuffer from a stream.

Throws:
java.lang.ClassNotFoundException
java.io.IOException
Serialized Fields

value

char[] value
The value is used for character storage.

 

count

int count
The count is the number of characters in the buffer.

 

Class org.apache.wicket.util.string.StringList extends AbstractStringList implements Serializable

serialVersionUID: 1L

Serialized Fields

strings

java.util.List<E> strings

totalLength

int totalLength

Class org.apache.wicket.util.string.StringValue extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

locale

java.util.Locale locale
Locale to be used for formatting and parsing.


text

java.lang.String text
The underlying string.

Class org.apache.wicket.util.string.StringValueConversionException extends ConversionException implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.template

Class org.apache.wicket.util.template.CssTemplate extends TextTemplateDecorator implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.template.JavaScriptTemplate extends TextTemplateDecorator implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.template.PackagedTextTemplate extends TextTemplate implements Serializable

serialVersionUID: 1L

Serialized Fields

buffer

java.lang.StringBuffer buffer
contents

Class org.apache.wicket.util.template.TextTemplate extends AbstractStringResourceStream implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.template.TextTemplateDecorator extends TextTemplate implements Serializable

serialVersionUID: 1L

Serialized Fields

decorated

TextTemplate decorated
The decorated TextTemplate.

Class org.apache.wicket.util.template.TextTemplateHeaderContributor extends StringHeaderContributor implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.template.TextTemplateLink extends ResourceLink<T> implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.tester

Class org.apache.wicket.util.tester.DummyHomePage extends WebPage implements Serializable

serialVersionUID: 1L

Serialized Fields

testPageLink

Link<T> testPageLink

Class org.apache.wicket.util.tester.DummyHomePage.TestLink extends Link<java.lang.Void> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.tester.DummyPanelPage extends WebPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.tester.WicketTesterHelper.ComponentData extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

path

java.lang.String path
Component path.


type

java.lang.String type
Component type.


value

java.lang.String value
Component value.


Package org.apache.wicket.util.time

Class org.apache.wicket.util.time.Duration extends org.apache.wicket.util.time.AbstractTimeValue implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.time.Time extends org.apache.wicket.util.time.AbstractTime implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.time.TimeFrame extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

end

Time end
end of this TimeFrame


start

Time start
beginning of this TimeFrame

Class org.apache.wicket.util.time.TimeMap extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

sources

java.util.Map<K,V> sources
Map from ITimeFrameSource implementing objects to Object values.

Class org.apache.wicket.util.time.TimeOfDay extends org.apache.wicket.util.time.AbstractTime implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.time.TimeOfDay.Meridian extends EnumeratedType implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.upload

Class org.apache.wicket.util.upload.DiskFileItem extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

fieldName

java.lang.String fieldName
The name of the form field as provided by the browser.


contentType

java.lang.String contentType
The content type passed by the browser, or null if not defined.


isFormField

boolean isFormField
Whether or not this item is a simple form field.


fileName

java.lang.String fileName
The original filename in the user's filesystem.


sizeThreshold

int sizeThreshold
The threshold above which uploads will be stored on disk.


repository

java.io.File repository
The directory in which uploaded files will be stored, if stored on disk.


cachedContent

byte[] cachedContent
Cached contents of the file.


dfos

DeferredFileOutputStream dfos
Output stream for this item.

Class org.apache.wicket.util.upload.FileUploadBase.InvalidContentTypeException extends FileUploadException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.upload.FileUploadBase.SizeLimitExceededException extends FileUploadException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.upload.FileUploadBase.UnknownSizeException extends FileUploadException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.upload.FileUploadException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.upload.MultipartFormInputStream.IllegalBoundaryException extends java.io.IOException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.upload.MultipartFormInputStream.MalformedStreamException extends java.io.IOException implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.util.value

Class org.apache.wicket.util.value.AttributeMap extends ValueMap implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.util.value.CopyOnWriteValueMap extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

wrapped

IValueMap wrapped
the wrapped IValueMap

Class org.apache.wicket.util.value.Count extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

count

int count
the count

Class org.apache.wicket.util.value.IntValue extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

value

int value
the int value

Class org.apache.wicket.util.value.LongValue extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

value

long value
the long value

Class org.apache.wicket.util.value.ValueMap extends java.util.LinkedHashMap<java.lang.String,java.lang.Object> implements Serializable

serialVersionUID: 1L

Serialized Fields

immutable

boolean immutable
true if this ValueMap has been made immutable.


Package org.apache.wicket.validation

Class org.apache.wicket.validation.CompoundValidator extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

validators

java.util.List<E> validators

Class org.apache.wicket.validation.ValidationError extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

keys

java.util.List<E> keys
list of message keys to try against the IErrorMessageSource


vars

java.util.Map<K,V> vars
variables map to use in variable substitution


message

java.lang.String message
default message used when all keys yield no message


Package org.apache.wicket.validation.validator

Class org.apache.wicket.validation.validator.AbstractValidator extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.validation.validator.CreditCardValidator extends AbstractValidator<java.lang.String> implements Serializable

serialVersionUID: 1L

Serialized Fields

creditCardNumber

java.lang.String creditCardNumber
The credit card number, which should be validated.


cardId

int cardId
The ID which represents the credit card institute.

Class org.apache.wicket.validation.validator.DateValidator extends AbstractValidator<java.util.Date> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.validation.validator.EmailAddressPatternValidator extends EmailAddressValidator implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.validation.validator.EmailAddressValidator extends PatternValidator implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.validation.validator.MaximumValidator extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

maximum

java.lang.Comparable<T> maximum

Class org.apache.wicket.validation.validator.MinimumValidator extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

minimum

java.lang.Comparable<T> minimum

Class org.apache.wicket.validation.validator.NumberValidator extends AbstractValidator<T extends java.lang.Number> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.validation.validator.NumberValidator.DoubleMaximumValidator extends NumberValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

maximum

double maximum
Deprecated. 

Class org.apache.wicket.validation.validator.NumberValidator.DoubleMinimumValidator extends NumberValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

minimum

double minimum
Deprecated. 

Class org.apache.wicket.validation.validator.NumberValidator.DoubleRangeValidator extends NumberValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

minimum

double minimum
Deprecated. 

maximum

double maximum
Deprecated. 

Class org.apache.wicket.validation.validator.NumberValidator.MaximumValidator extends NumberValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

maximum

long maximum
Deprecated. 

Class org.apache.wicket.validation.validator.NumberValidator.MinimumValidator extends NumberValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

minimum

long minimum
Deprecated. 

Class org.apache.wicket.validation.validator.NumberValidator.RangeValidator extends NumberValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

minimum

long minimum
Deprecated. 

maximum

long maximum
Deprecated. 

Class org.apache.wicket.validation.validator.PatternValidator extends StringValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

pattern

java.util.regex.Pattern pattern
the java.util.regex.Pattern


reverse

boolean reverse
whether to exclude matching input

Class org.apache.wicket.validation.validator.RangeValidator extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

minimum

java.lang.Comparable<T> minimum

maximum

java.lang.Comparable<T> maximum

Class org.apache.wicket.validation.validator.StringValidator extends AbstractValidator<java.lang.String> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.validation.validator.StringValidator.ExactLengthValidator extends StringValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

length

int length

Class org.apache.wicket.validation.validator.StringValidator.LengthBetweenValidator extends StringValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

maximum

int maximum

minimum

int minimum

Class org.apache.wicket.validation.validator.StringValidator.MaximumLengthValidator extends StringValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

maximum

int maximum

Class org.apache.wicket.validation.validator.StringValidator.MinimumLengthValidator extends StringValidator implements Serializable

serialVersionUID: 1L

Serialized Fields

minimum

int minimum

Class org.apache.wicket.validation.validator.UrlValidator extends AbstractValidator<java.lang.String> implements Serializable

serialVersionUID: 1L

Serialized Fields

options

long options
Holds the set of current validation options.


allowedSchemes

java.util.Set<E> allowedSchemes
The set of schemes that are allowed to be in a URL.


defaultSchemes

java.lang.String[] defaultSchemes
If no schemes are provided, default to this set of protocols.


Package org.apache.wicket.version

Package org.apache.wicket.version.undo

Class org.apache.wicket.version.undo.Change extends java.lang.Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.version.undo.UndoPageVersionManager extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

changeList

org.apache.wicket.version.undo.ChangeList changeList
the current list of changes


changeListStack

ArrayListStack<T> changeListStack
the stack of change lists for undoing


currentVersionNumber

int currentVersionNumber
the current version number


currentAjaxVersionNumber

int currentAjaxVersionNumber
the current Ajax version number


maxVersions

int maxVersions
maximum number of most-recent versions to keep


page

Page page
the Page being managed



Copyright © 2004-2009 Apache Software Foundation. All Rights Reserved.