Serialized Form


Package org.apache.wicket

Class org.apache.wicket.ApplicationListenerCollection extends ListenerCollection<IApplicationListener> implements Serializable

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

serialVersionUID: 1L

Serialized Fields

attribute

String attribute
Attribute specification.


replaceModel

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

Class org.apache.wicket.BehaviorInstantiationListenerCollection extends ListenerCollection<IBehaviorInstantiationListener> implements Serializable

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

serialVersionUID: 1L

Serialized Fields

flags

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


id

String id
Component id.


parent

MarkupContainer parent
Any parent container.


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

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.ConverterLocator extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

classToConverter

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

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

serialVersionUID: 1L

Serialized Fields

children

Object children
List of children or single child

Class org.apache.wicket.MetaDataEntry extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

key

MetaDataKey<T> key

object

Object object

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

serialVersionUID: 1L

Class org.apache.wicket.NonResettingRestartException extends RequestHandlerStack.ReplaceHandlerException implements Serializable

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

autoIndex

int autoIndex
Used to create page-unique numbers


numericId

int numericId
Numeric version of this page's id


pageParameters

PageParameters pageParameters
Page parameters used to construct this page


renderCount

int renderCount
See Also:
IRequestablePage.getRenderCount()

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

serialVersionUID: 1L

Serialized Fields

pageId

int pageId

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

sequence

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


pageId

int pageId
a sequence used for generating page IDs


pageAccessSynchronizer

IProvider<T> pageAccessSynchronizer
synchronize page's access by session


clientInfo

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


feedbackMessages

FeedbackMessages feedbackMessages
feedback messages


id

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


locale

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


metaData

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


style

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

Class org.apache.wicket.SessionListenerCollection extends ListenerCollection<ISessionListener> implements Serializable

Class org.apache.wicket.WicketRuntimeException extends 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.AjaxChannel extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name

type

AjaxChannel.Type type

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

serialVersionUID: 1L

Serialized Fields

event

String event

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

Serialized Fields

windowName

String windowName
A unique name used for the page window's name


hasBeenRendered

boolean hasBeenRendered
A flag whether this behavior has been rendered at least once.

Class org.apache.wicket.ajax.AjaxRequestTargetListenerCollection extends ListenerCollection<AjaxRequestTarget.IListener> implements Serializable

serialVersionUID: 1L

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

serialVersionUID: 1L

Class org.apache.wicket.ajax.CancelEventIfAjaxListener extends AjaxCallListener implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.WicketAjaxDebugJQueryResourceReference extends JavaScriptResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.WicketAjaxJQueryResourceReference extends JavaScriptResourceReference implements Serializable

serialVersionUID: -2918665261694523156L

Class org.apache.wicket.ajax.WicketEventJQueryResourceReference extends JavaScriptResourceReference implements Serializable

serialVersionUID: -2918665261694523156L


Package org.apache.wicket.ajax.attributes

Class org.apache.wicket.ajax.attributes.AjaxCallListener extends Object implements Serializable

Serialized Fields

success

StringBuilder success

failure

StringBuilder failure

before

StringBuilder before

beforeSend

StringBuilder beforeSend

after

StringBuilder after

complete

StringBuilder complete

precondition

StringBuilder precondition

Class org.apache.wicket.ajax.attributes.ThrottlingSettings extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

delay

Duration delay

id

String id

postponeTimerOnUpdate

boolean postponeTimerOnUpdate

Package org.apache.wicket.ajax.form

Class org.apache.wicket.ajax.form.AjaxFormChoiceComponentUpdatingBehavior extends AjaxFormComponentUpdatingBehavior 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()


defaultProcessing

boolean defaultProcessing

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.json

Class org.apache.wicket.ajax.json.JSONException extends Exception implements Serializable

serialVersionUID: 0L

Serialized Fields

cause

Throwable cause

Class org.apache.wicket.ajax.json.JsonFunction extends Object implements Serializable

Serialized Fields

value

CharSequence value

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.AjaxSubmitLink extends AbstractSubmitLink implements Serializable

serialVersionUID: 1L

Serialized Fields

form

Form<T> form

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<Void> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.ajax.markup.html.navigation.paging.AjaxPagingNavigationLink extends PagingNavigationLink<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.application

Class org.apache.wicket.application.ComponentInitializationListenerCollection extends ListenerCollection<IComponentInitializationListener> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.application.ComponentInstantiationListenerCollection extends ListenerCollection<IComponentInstantiationListener> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.application.ComponentOnAfterRenderListenerCollection extends ListenerCollection<IComponentOnAfterRenderListener> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.application.ComponentOnBeforeRenderListenerCollection extends ListenerCollection<IComponentOnBeforeRenderListener> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.application.HeaderContributorListenerCollection extends ListenerCollection<IHeaderContributor> implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.authorization

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

serialVersionUID: -1L

Serialized Fields

name

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

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

serialVersionUID: 1L

Serialized Fields

componentClassName

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 Behavior implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component
the component that this handler is bound to.

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

serialVersionUID: 1L

Serialized Fields

separator

String separator
Separator between the current value and the concatenated value, typically a space ' ' or colon ';'.

Class org.apache.wicket.behavior.Behavior extends Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.behavior.InvalidBehaviorIdException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component

behaviorId

int behaviorId

Package org.apache.wicket.core.request

Class org.apache.wicket.core.request.ClientInfo extends Object implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.core.request.handler

Class org.apache.wicket.core.request.handler.ComponentNotFoundException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.core.request.handler.ListenerInvocationNotAllowedException extends RuntimeException implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component

behavior

Behavior behavior

iface

RequestListenerInterface iface

Package org.apache.wicket.core.request.handler.logger

Class org.apache.wicket.core.request.handler.logger.ListenerInterfaceLogData extends PageLogData implements Serializable

serialVersionUID: 1L

Serialized Fields

componentClass

Class<T> componentClass

componentPath

String componentPath

behaviorIndex

Integer behaviorIndex

behaviorClass

Class<T> behaviorClass

interfaceName

String interfaceName

interfaceMethod

String interfaceMethod

submittingComponentClass

Class<T> submittingComponentClass

submittingComponentPath

String submittingComponentPath

Class org.apache.wicket.core.request.handler.logger.PageLogData extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

pageClass

Class<T> pageClass

pageId

Integer pageId

pageParameters

PageParameters pageParameters

renderCount

Integer renderCount

Class org.apache.wicket.core.request.handler.logger.ResourceReferenceLogData extends ResourceLogData implements Serializable

serialVersionUID: 1L

Serialized Fields

resourceReferenceClass

Class<T> resourceReferenceClass

scope

Class<T> scope

pageParameters

PageParameters pageParameters

Class org.apache.wicket.core.request.handler.logger.ResourceStreamLogData extends ResourceLogData implements Serializable

serialVersionUID: 1L

Serialized Fields

resourceStreamClass

Class<T> resourceStreamClass

contentDisposition

ContentDisposition contentDisposition

contentType

String contentType

Package org.apache.wicket.core.request.mapper

Class org.apache.wicket.core.request.mapper.StalePageException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.core.util.io

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

serialVersionUID: 1L


Package org.apache.wicket.core.util.lang

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

serialVersionUID: 1L

Serialized Fields

converterSupplier

IConverterLocator converterSupplier

locale

Locale locale

Package org.apache.wicket.core.util.objects.checker

Class org.apache.wicket.core.util.objects.checker.CheckingObjectOutputStream.ObjectCheckException extends WicketRuntimeException implements Serializable


Package org.apache.wicket.core.util.resource

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

serialVersionUID: 1L

Serialized Fields

resourceStream

IResourceStream resourceStream

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

serialVersionUID: 1L

Serialized Fields

url

URL url
The URL to this resource.


lastModified

Time lastModified
Last known time the stream was last modified.

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

serialVersionUID: 1L

Serialized Fields

url

String url
the relative url of the external resource.


Package org.apache.wicket.core.util.string.interpolator

Class org.apache.wicket.core.util.string.interpolator.ConvertingPropertyVariableInterpolator extends PropertyVariableInterpolator implements Serializable

serialVersionUID: 1L

Serialized Fields

locator

IConverterLocator locator

locale

Locale locale

Class org.apache.wicket.core.util.string.interpolator.PropertyVariableInterpolator extends VariableInterpolator implements Serializable

serialVersionUID: 1L

Serialized Fields

oject

Object oject
The object to introspect on


Package org.apache.wicket.feedback

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

serialVersionUID: 1L

Serialized Fields

component

Component component
The component to accept feedback messages for

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

serialVersionUID: 1L

Serialized Fields

container

MarkupContainer container

Class org.apache.wicket.feedback.DefaultCleanupFeedbackMessageFilter extends Object implements Serializable

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

minimumErrorLevel

int minimumErrorLevel
The minimum error level

Class org.apache.wicket.feedback.FeedbackMessage extends 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

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 Object implements Serializable

serialVersionUID: 1L

Serialized Fields

messages

List<E> messages
Holds a list of FeedbackMessages.

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

serialVersionUID: 1L

Serialized Fields

filter

IFeedbackMessageFilter filter
Message filter


sortingComparator

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


pageResolvingComponent

Component pageResolvingComponent

Class org.apache.wicket.feedback.FencedFeedbackPanel extends FeedbackPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

fence

Component fence

Package org.apache.wicket.markup

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Class org.apache.wicket.markup.MarkupParser.MarkupFilterList extends ArrayList<IMarkupFilter> implements Serializable

serialVersionUID: 1L

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

serialVersionUID: 1846489965076612828L

Serialized Fields

resourceStream

IResourceStream resourceStream
The associated markup resource stream


markupClassName

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


cacheKey

String cacheKey
The key used to cache the markup resource stream


encoding

String encoding
The encoding as found in <?xml ... encoding="" ?>. null, otherwise


wicketNamespace

String wicketNamespace
Wicket namespace: see WICKET_XHTML_DTD


wicketId

String wicketId
== wicket namespace name + ":id"


doctype

String doctype
HTML5 http://www.w3.org/TR/html5-diff/#doctype

Class org.apache.wicket.markup.MarkupType extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

extension

String extension

mimeType

String mimeType

Class org.apache.wicket.markup.WicketParseException extends ParseException implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.markup.head

Class org.apache.wicket.markup.head.PriorityFirstComparator extends Object implements Serializable

Serialized Fields

renderPageFirst

boolean renderPageFirst

Package org.apache.wicket.markup.head.filter

Class org.apache.wicket.markup.head.filter.HeaderResponseContainer extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

filterName

String filterName

Package org.apache.wicket.markup.html

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

serialVersionUID: 1L

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

String scope
. A kind of namespace

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

serialVersionUID: 1L

Serialized Fields

fifo

ConcurrentLinkedQueue<E> fifo

maxSize

int maxSize

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

serialVersionUID: 1L

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.WebPage extends Page 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.border

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

serialVersionUID: 1L

Serialized Fields

markupProvider

MarkupContainer markupProvider

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

serialVersionUID: 1L

Serialized Fields

body

Border.BorderBodyContainer body
The body component associated with

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

serialVersionUID: 1L

Serialized Fields

rendering

boolean rendering

Class org.apache.wicket.markup.html.border.BorderBehavior extends Behavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.border.BorderPanel extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

body

Body body

Class org.apache.wicket.markup.html.border.BoxBorder extends Border 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.AbstractCheckSelector extends LabeledWebMarkupContainer implements Serializable

serialVersionUID: 1L

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.AutoLabelResolver extends Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.AutoLabelResolver.AutoLabel extends TransparentWebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component

Class org.apache.wicket.markup.html.form.AutoLabelTextResolver extends Object implements Serializable

Class org.apache.wicket.markup.html.form.Button extends FormComponent<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

int 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<Boolean> implements Serializable

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

prefix

String prefix

suffix

String suffix

Class org.apache.wicket.markup.html.form.CheckboxMultipleChoiceSelector extends AbstractCheckSelector implements Serializable

serialVersionUID: 1L

Serialized Fields

choiceComponent

CheckBoxMultipleChoice<T> choiceComponent

Class org.apache.wicket.markup.html.form.CheckBoxSelector extends AbstractCheckSelector implements Serializable

serialVersionUID: 1L

Serialized Fields

checkBoxIdArrayLiteral

String checkBoxIdArrayLiteral
Javascript array literal containing the markup IDs of the checkboxes we want to check/uncheck. Example: "['foo', 'bar', 'baz']". Generated by JavascriptUtils.buildMarkupIdJSArrayLiteral().

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

group

CheckGroup<T> group

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

serialVersionUID: 1L

Serialized Fields

displayExpression

String displayExpression
expression for getting the display value.


idExpression

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.EmailTextField extends TextField<String> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.EnumChoiceRenderer extends 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.


maxSize

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


multiPart

short 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

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


typeName

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

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

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<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.NumberTextField extends TextField<N extends Number & Comparable<N>> implements Serializable

serialVersionUID: 1L

Serialized Fields

validator

RangeValidator<Z extends Comparable<Z> & Serializable> validator

minimum

Number minimum

maximum

Number maximum

Class org.apache.wicket.markup.html.form.PasswordTextField extends TextField<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

int 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

String prefix

suffix

String suffix

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

serialVersionUID: 1L

Class org.apache.wicket.markup.html.form.RangeTextField extends NumberTextField<N extends Number & Comparable<N>> implements Serializable

serialVersionUID: 1L

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.UrlTextField extends TextField<String> implements Serializable

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

error

IValidationError error
error object


message

Serializable message
error message


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

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

serialVersionUID: 1L

Serialized Fields

item

FileItem item

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

upload

WebComponent upload

container

WebMarkupContainer container

max

int max

useMultipleAttr

boolean useMultipleAttr

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

Class org.apache.wicket.markup.html.form.validation.AbstractFormValidator extends Behavior 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

Class org.apache.wicket.markup.html.form.validation.FormValidatorAdapter extends Behavior implements Serializable

serialVersionUID: 1L

Serialized Fields

validator

IFormValidator validator

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 Behavior 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

Map<K,V> fontAttributes
The font to use


textColorRgb

int textColorRgb
The color of the text


label

String label
The button label

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

serialVersionUID: 1L

Serialized Fields

resourceKind

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

IResource resource
The image resource this image component references


resourceReference

ResourceReference resourceReference
The resource reference


resourceParameters

PageParameters resourceParameters
The resource parameters


locale

Locale locale
The locale of the image resource


style

String style
The style of the image resource


variation

String variation
The component's variation (of the style)

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

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

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

enclosureMarkupAsString

String enclosureMarkupAsString

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

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

serialVersionUID: 1L

Serialized Fields

bodyModel

IModel<T> bodyModel
this link's label/body.


beforeDisabledLink

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


afterDisabledLink

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

String pageClassName
The page class that this link links to.


parameters

PageParameters parameters
The parameters to pass to the class constructor when instantiated.

Class org.apache.wicket.markup.html.link.ClientSideImageMap extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

areas

RepeatingView areas

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

serialVersionUID: 1L

Serialized Fields

fileNameModel

IModel<T> fileNameModel
The file name that will be used in the response headers.
Optional. If omitted the name of the provided file will be used.


deleteAfter

boolean deleteAfter
A flag indicating whether the file should be deleted after download.


cacheDuration

Duration cacheDuration
The duration for which the file resource should be cached by the browser.

By default is null and IResourceSettings.getDefaultCacheDuration() is used.

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

serialVersionUID: 1L

Serialized Fields

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.InlineFrame extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

pageLink

IPageLink pageLink
The link.

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.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 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

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

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.

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

serialVersionUID: 1L

Serialized Fields

resourceReference

ResourceReference resourceReference
The Resource reference


resource

IResource resource
The Resource


resourceParameters

PageParameters resourceParameters
The resource parameters

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

serialVersionUID: 1L


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

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Class org.apache.wicket.markup.html.list.ListItemModel extends 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.Loop extends AbstractRepeater implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.list.LoopItem extends AbstractItem 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.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

long currentPage
The page to show.


itemsPerPage

long itemsPerPage
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

long startIndex
Offset for the Loop


margin

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


separator

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

long 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.AbstractErrorPage extends WebPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.markup.html.pages.AccessDeniedPage extends AbstractErrorPage 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 Object implements Serializable

serialVersionUID: 1L

Serialized Fields

navigatorAppCodeName

String navigatorAppCodeName

navigatorAppName

String navigatorAppName

navigatorAppVersion

String navigatorAppVersion

navigatorCookieEnabled

Boolean navigatorCookieEnabled

navigatorJavaEnabled

Boolean navigatorJavaEnabled

navigatorLanguage

String navigatorLanguage

navigatorPlatform

String navigatorPlatform

navigatorUserAgent

String navigatorUserAgent

screenColorDepth

String screenColorDepth

screenHeight

String screenHeight

screenWidth

String screenWidth

utcOffset

String utcOffset

utcDSTOffset

String utcDSTOffset

browserWidth

String browserWidth

browserHeight

String browserHeight

hostname

String hostname

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Class org.apache.wicket.markup.html.pages.PageExpiredErrorPage extends AbstractErrorPage 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 WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

associatedMarkupId

String associatedMarkupId
The wicket:id of the associated markup fragment


markupProvider

MarkupContainer markupProvider

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

serialVersionUID: 1L

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

serialVersionUID: 1L


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

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

serialVersionUID: 1L

Serialized Fields

stack

Stack<E> stack
Stack of tags


childId

String childId
The id of the first wicket tag inside the enclosure

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

serialVersionUID: 1L

Serialized Fields

enclosures

Stack<E> enclosures
enclosures inside enclosures

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

autolinkStatus

ArrayListStack<T> autolinkStatus
Allow to have link regions within link regions


autolinking

boolean autolinking
Current status

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

wicketMessageAttrName

String wicketMessageAttrName

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(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException
Serialized Fields

itemsPerPage

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


currentPage

long 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 Object implements Serializable

serialVersionUID: 1L

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

serialVersionUID: 1L

Class org.apache.wicket.markup.repeater.Item.IndexComparator extends Object implements Serializable

serialVersionUID: 1L

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.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 Object implements Serializable

serialVersionUID: 1L


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.EmptyDataProvider extends 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 Object implements Serializable

serialVersionUID: 1L

Serialized Fields

list

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.AutoLinkResolver extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

tagNameToAutolinkResolverDelegates

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


tagNameToTagReferenceResolvers

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

String anchor

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.WicketMessageResolver extends 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 Behavior implements Serializable

serialVersionUID: 1L

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

String xslFile
An optional xsl file path

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

serialVersionUID: 1L

Serialized Fields

xslFile

String xslFile
An optional xsl file path


Package org.apache.wicket.mock

Class org.apache.wicket.mock.MockHomePage extends WebPage implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.model

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Class org.apache.wicket.model.ChainingModel extends Object implements Serializable

Serialized Fields

target

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

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

propertyName

String propertyName
Name of property to read

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

object

Serializable object
Backing object.

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

serialVersionUID: 1L

Serialized Fields

expression

String expression
Property expression for property access.

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

serialVersionUID: 1L

Serialized Fields

resourceKey

String resourceKey

defaultValue

String defaultValue

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

serialVersionUID: 1L

Serialized Fields

model

IModel<T> model
The wrapped model.


parameters

Object[] parameters
Optional parameters.


component

Component component
The relative component used for lookups.


resourceKey

String resourceKey
The key of message to get.


defaultValue

String defaultValue
The default value of the message.


Package org.apache.wicket.model.util

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

object

Object object
model object

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L


Package org.apache.wicket.page

Class org.apache.wicket.page.CouldNotLockPageException extends RuntimeException implements Serializable

serialVersionUID: 1L

Serialized Fields

page

int page

timeout

Duration timeout

threadName

String threadName

Class org.apache.wicket.page.PageAccessSynchronizer extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

locks

IProvider<T> locks
map of which pages are owned by which threads


timeout

Duration timeout
timeout value for acquiring a page lock


Package org.apache.wicket.pageStore

Class org.apache.wicket.pageStore.DefaultPageStore.SerializedPage extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

pageId

int pageId
The id of the serialized IManageablePage


sessionId

String sessionId
The id of the http session in which the serialized IManageablePage is used.


data

byte[] data
The serialized IManageablePage

Class org.apache.wicket.pageStore.DiskDataStore.SessionEntry extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

sessionId

String sessionId

fileName

String fileName

manager

PageWindowManager manager

unbound

boolean unbound

Class org.apache.wicket.pageStore.PageWindowManager extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

windows

List<E> windows
list of PageWindowInternal objects


idToWindowIndex

IntHashMap<V> idToWindowIndex
map from page id to list of pagewindow indices (referring to the windows list) - to improve searching speed the index must be cleaned when the instances in the windows list change their indexes (e.g. items are shifted on page window removal)


windowIndexToPageId

IntHashMap<V> windowIndexToPageId
Inversed index of #idToWindowIndex


indexPointer

int indexPointer
index of last added page


totalSize

int totalSize

maxSize

long maxSize
Maximum page size. After this size is exceeded, the pages will be saved starting at the beginning of file.


Package org.apache.wicket.protocol.http

Class org.apache.wicket.protocol.http.ClientProperties extends 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

browserChrome

boolean browserChrome

browserVersionMajor

int browserVersionMajor

browserVersionMinor

int browserVersionMinor

browserWidth

int browserWidth

cookiesEnabled

boolean cookiesEnabled

javaEnabled

boolean javaEnabled

navigatorAppCodeName

String navigatorAppCodeName

navigatorAppName

String navigatorAppName

navigatorAppVersion

String navigatorAppVersion

navigatorLanguage

String navigatorLanguage

navigatorPlatform

String navigatorPlatform

navigatorUserAgent

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

String remoteAddress

screenColorDepth

int screenColorDepth

screenHeight

int screenHeight

screenWidth

int screenWidth

timeZone

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


utcDSTOffset

String utcDSTOffset

utcOffset

String utcOffset

hostname

String hostname

Class org.apache.wicket.protocol.http.IRequestLogger.RequestData extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

startDate

long startDate

timeTaken

long timeTaken

entries

List<E> entries

requestedUrl

String requestedUrl

eventTarget

IRequestHandler eventTarget

responseTarget

IRequestHandler responseTarget

sessionId

String sessionId

totalSessionSize

long totalSessionSize

sessionInfo

Object sessionInfo

activeRequest

int activeRequest

Class org.apache.wicket.protocol.http.IRequestLogger.SessionData extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

sessionId

String sessionId

startDate

long startDate

lastActive

long lastActive

numberOfRequests

long numberOfRequests

totalTimeTaken

long totalTimeTaken

sessionSize

long sessionSize

sessionInfo

Object sessionInfo

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.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


Package org.apache.wicket.protocol.http.mock

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

serialVersionUID: 1L

Serialized Fields

attributes

ValueMap attributes

creationTime

long creationTime

id

String id

lastAccessedTime

long lastAccessedTime

temporary

boolean temporary

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

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

serialVersionUID: 1L

Serialized Fields

userAgent

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.servlet

Class org.apache.wicket.protocol.http.servlet.ResponseIOException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.protocol.http.servlet.UploadInfo extends Object implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.request.component

Package org.apache.wicket.request.cycle

Class org.apache.wicket.request.cycle.RequestCycleListenerCollection extends ListenerCollection<IRequestCycleListener> implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.request.handler.resource

Class org.apache.wicket.request.handler.resource.ResourceLogData extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name

locale

String locale

style

String style

variation

String variation

Package org.apache.wicket.request.resource

Class org.apache.wicket.request.resource.AbstractResource extends Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.request.resource.ByteArrayResource extends AbstractResource implements Serializable

serialVersionUID: 1L

Serialized Fields

contentType

String contentType
the content type.


array

byte[] array
the binary data.


lastModified

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


filename

String filename

Class org.apache.wicket.request.resource.ContextRelativeResource extends AbstractResource implements Serializable

serialVersionUID: 1L

Serialized Fields

path

String path

cachingEnabled

boolean cachingEnabled

Class org.apache.wicket.request.resource.CssPackageResource extends PackageResource implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.request.resource.CssResourceReference extends PackageResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.request.resource.DynamicImageResource extends AbstractResource implements Serializable

serialVersionUID: 1L

Serialized Fields

format

String format
The image type


lastModifiedTime

Time lastModifiedTime
The last modified time of this resource

Class org.apache.wicket.request.resource.JavaScriptPackageResource extends PackageResource implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.request.resource.JavaScriptResourceReference extends PackageResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.request.resource.MetaInfStaticResourceReference extends PackageResourceReference implements Serializable

serialVersionUID: -1858339228780709471L

Class org.apache.wicket.request.resource.PackageResource extends AbstractResource implements Serializable

serialVersionUID: 1L

Serialized Fields

absolutePath

String absolutePath
The path to the resource


locale

Locale locale
The resource's locale


path

String path
The path this resource was created with.


scopeName

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


style

String style
The resource's style


variation

String variation
The component's variation (of the style)


compress

boolean compress
A flag indicating whether ITextResourceCompressor can be used to compress this resource. Default is false because this resource may be used for binary data (e.g. an image). Specializations of this class should change this flag appropriately.


cachingEnabled

boolean cachingEnabled
controls whether IResourceCachingStrategy should be applied to resource


textEncoding

String textEncoding
text encoding (may be null) - only makes sense for character-based resources

Class org.apache.wicket.request.resource.PackageResource.PackageResourceBlockedException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.request.resource.PackageResourceReference extends ResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.request.resource.ResourceReference extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

data

ResourceReference.Key data

Class org.apache.wicket.request.resource.ResourceReference.Key extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

scope

String scope

name

String name

locale

Locale locale

style

String style

variation

String variation

Class org.apache.wicket.request.resource.ResourceStreamResource extends AbstractResource implements Serializable

serialVersionUID: 1L

Serialized Fields

stream

IResourceStream stream

fileName

String fileName

contentDisposition

ContentDisposition contentDisposition

textEncoding

String textEncoding

cacheDuration

Duration cacheDuration

Class org.apache.wicket.request.resource.SharedResourceReference extends ResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.request.resource.UrlResourceReference extends ResourceReference implements Serializable

Serialized Fields

url

Url url
The url to the resource.


contextRelative

boolean contextRelative

Package org.apache.wicket.request.resource.caching

Package org.apache.wicket.resource

Class org.apache.wicket.resource.CircularDependencyException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.resource.JQueryPluginResourceReference extends JavaScriptResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.resource.JQueryResourceReference extends JavaScriptResourceReference implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.resource.TextTemplateResourceReference extends ResourceReference implements Serializable

serialVersionUID: 1L

Serialized Fields

textTemplate

TextTemplate textTemplate

variablesModel

IModel<T> variablesModel

resource

ResourceStreamResource resource

Package org.apache.wicket.resource.bundles

Class org.apache.wicket.resource.bundles.ConcatBundleResource extends AbstractResource implements Serializable

serialVersionUID: 1L

Serialized Fields

providedResources

List<E> providedResources

cachingEnabled

boolean cachingEnabled

compressor

ITextResourceCompressor compressor
An optional compressor that will be used to compress the bundle resources

Class org.apache.wicket.resource.bundles.ConcatResourceBundleReference extends ResourceReference implements Serializable

serialVersionUID: 1L

Serialized Fields

providedResources

List<E> providedResources

compressor

ITextResourceCompressor compressor
An optional compressor that will be used to compress the bundle resources

Class org.apache.wicket.resource.bundles.ResourceBundleReference extends ResourceReference implements Serializable

serialVersionUID: 1L

Serialized Fields

bundleRef

ResourceReference bundleRef

providedResources

List<E> providedResources

Package org.apache.wicket.session

Class org.apache.wicket.session.HttpSessionStore.SessionBindingListener extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

applicationKey

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


wicketSession

Session wicketSession
The Wicket Session associated with the expiring HttpSession


Package org.apache.wicket.settings

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

serialVersionUID: 1L


Package org.apache.wicket.util.cookies

Class org.apache.wicket.util.cookies.CookieDefaults extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

maxAge

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


comment

String comment
Cookie comment.


domain

String domain
Cookie domain.


secure

boolean secure
Whether the cookie is secure.


version

int version
Cookie version.


Package org.apache.wicket.util.reference

Class org.apache.wicket.util.reference.ClassReference extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name

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.PackageTextTemplate extends TextTemplate implements Serializable

serialVersionUID: 1L

Serialized Fields

buffer

StringBuilder 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.


Package org.apache.wicket.util.tester

Class org.apache.wicket.util.tester.BaseWicketTester.StartComponentInPage extends WebPage implements Serializable

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<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 Object implements Serializable

serialVersionUID: 1L

Serialized Fields

path

String path
Component path.


type

String type
Component type.


value

String value
Component value.


Package org.apache.wicket.validation

Class org.apache.wicket.validation.CompoundValidator extends Behavior implements Serializable

serialVersionUID: 1L

Serialized Fields

validators

List<E> validators

Class org.apache.wicket.validation.RawValidationError extends Object implements Serializable

Serialized Fields

errorMessage

Serializable errorMessage

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

serialVersionUID: 1L

Serialized Fields

keys

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


vars

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


message

String message
default message used when all keys yield no message

Class org.apache.wicket.validation.ValidatorAdapter extends Behavior implements Serializable

serialVersionUID: 1L

Serialized Fields

validator

IValidator<T> validator

Package org.apache.wicket.validation.validator

Class org.apache.wicket.validation.validator.AbstractRangeValidator extends Behavior implements Serializable

serialVersionUID: 1L

Serialized Fields

minimum

Comparable<T> minimum

maximum

Comparable<T> maximum

Class org.apache.wicket.validation.validator.AbstractValidator extends Behavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.validation.validator.CreditCardValidator extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

cardId

CreditCardValidator.CreditCard cardId
The ID which represents the credit card institute.


failOnUnknown

boolean failOnUnknown

Class org.apache.wicket.validation.validator.DateValidator extends RangeValidator<Date> implements Serializable

serialVersionUID: 1L

Serialized Fields

format

String format

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

pattern

Pattern pattern
the pattern to match


reverse

boolean reverse
whether to exclude matching input

Class org.apache.wicket.validation.validator.RangeValidator extends AbstractRangeValidator<Z extends Comparable<Z> & Serializable,Z extends Comparable<Z> & Serializable> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.validation.validator.StringValidator extends AbstractRangeValidator<Integer,String> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.validation.validator.UrlValidator extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

options

long options
Holds the set of current validation options.


allowedSchemes

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


defaultSchemes

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



Copyright © 2006-2013 Apache Software Foundation. All Rights Reserved.