Serialized Form


Package org.apache.wicket

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

String attribute
Attribute specification.


enabled

boolean enabled
Modification information.


pattern

String pattern
The pattern.


replaceModel

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

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

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException
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.


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

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

Object children
List of children or single child

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

autoIndex

short autoIndex
Used to create page-unique numbers


autoIndex2

int autoIndex2

numericId

int numericId
Numeric version of this page's id


pageMapName

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

serialVersionUID: 1L

Serialized Fields

metaData

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


interceptContinuationURL

String interceptContinuationURL
URL to continue to after a given page.


name

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

serialVersionUID: 1L

Serialized Fields

pageMapName

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

serialVersionUID: 1L

Serialized Fields

cacheable

boolean cacheable
True if this resource can be cached

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

serialVersionUID: 2L

Serialized Fields

locale

Locale locale
The locale of the resource


name

String name
The name of the resource


scopeName

String scopeName
The scope of the named resource


style

String style
The style of the resource


stateless

boolean stateless
Whether or not this resource reference is stateless

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

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

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


style

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


usedPageMapNames

LinkedList<E> usedPageMapNames
A linked list for last used pagemap names queue

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

serialVersionUID: 1L

Serialized Fields

pageMapNames

Set<E> pageMapNames

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.AjaxEventBehavior extends AbstractDefaultAjaxBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

event

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

duration

Duration duration

id

String id

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

serialVersionUID: 1L

Serialized Fields

delegate

IAjaxCallDecorator delegate

Class org.apache.wicket.ajax.calldecorator.AjaxPreprocessingCallDecorator extends 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<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.authentication

Class org.apache.wicket.authentication.AuthenticatedWebSession extends WebSession implements Serializable

serialVersionUID: 1L

Serialized Fields

signedIn

boolean signedIn
True when the user is signed in


Package org.apache.wicket.authentication.pages

Class org.apache.wicket.authentication.pages.SignInPage extends WebPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.authentication.pages.SignOutPage extends WebPage implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.authentication.panel

Class org.apache.wicket.authentication.panel.SignInPanel extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

includeRememberMe

boolean includeRememberMe
True if the panel should display a remember-me checkbox


password

PasswordTextField password
Field for password.


rememberMe

boolean rememberMe
True if the user should be remembered via form persistence (cookies)


username

TextField<T> username
Field for user name.

Class org.apache.wicket.authentication.panel.SignInPanel.SignInForm extends StatelessForm<Void> implements Serializable

serialVersionUID: 1L

Serialized Fields

properties

ValueMap properties
El-cheapo model for form.


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.authorization.strategies.role

Class org.apache.wicket.authorization.strategies.role.Roles extends HashSet<String> implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.authorization.strategies.role.metadata

Class org.apache.wicket.authorization.strategies.role.metadata.InstantiationPermissions extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

rolesForComponentClass

Map<K,V> rolesForComponentClass
Holds roles objects for component classes


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

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

String attribute
The attribute


value

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

Class org.apache.wicket.datetime.DateConverter extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

applyTimeZoneDifference

boolean applyTimeZoneDifference
Whether to apply the time zone difference when interpreting dates.


component

Component component
Optional component to use for determining the locale.

Class org.apache.wicket.datetime.PatternDateConverter extends DateConverter implements Serializable

serialVersionUID: 1L

Serialized Fields

datePattern

String datePattern
pattern to use.

Class org.apache.wicket.datetime.StyleDateConverter extends DateConverter implements Serializable

serialVersionUID: 1L

Serialized Fields

dateStyle

String dateStyle
Date style to use. See DateTimeFormat.forStyle(String).


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

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

serialVersionUID: 1L

Serialized Fields

after

String after
optionally prepend to label.


before

String before
optionally append to label.


converter

DateConverter converter
The converter for the Label


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

Class org.apache.wicket.datetime.markup.html.form.DateTextField extends TextField<Date> implements Serializable

serialVersionUID: 1L

Serialized Fields

converter

DateConverter converter
The converter for the TextField


Package org.apache.wicket.devutils

Class org.apache.wicket.devutils.DevelopmentUtilitiesNotEnabledException extends WicketRuntimeException implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.devutils.DevUtilsPage extends WebPage implements Serializable

Class org.apache.wicket.devutils.DevUtilsPanel extends Panel implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.devutils.debugbar

Class org.apache.wicket.devutils.debugbar.DebugBar extends DevUtilsPanel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.devutils.debugbar.InspectorDebugPanel extends StandardDebugPanel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.devutils.debugbar.SessionSizeDebugPanel extends StandardDebugPanel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.devutils.debugbar.StandardDebugPanel extends DevUtilsPanel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.devutils.debugbar.VersionDebugContributor extends Object implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.devutils.inspector

Class org.apache.wicket.devutils.inspector.ApplicationView extends DevUtilsPanel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.devutils.inspector.InspectorBug extends DevUtilsPanel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.devutils.inspector.InspectorPage extends DevUtilsPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.devutils.inspector.LiveSessionsPage extends DevUtilsPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.devutils.inspector.PageMapView extends DevUtilsPanel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.devutils.inspector.RequestsPage extends DevUtilsPage implements Serializable

serialVersionUID: 1L

Serialized Fields

sdf

SimpleDateFormat sdf

Class org.apache.wicket.devutils.inspector.SessionSizeModel extends LoadableDetachableModel<Bytes> implements Serializable

serialVersionUID: 1L

Serialized Fields

session

Session session

Class org.apache.wicket.devutils.inspector.SessionTotalSizeModel extends LoadableDetachableModel<Bytes> implements Serializable

serialVersionUID: 1L

Serialized Fields

session

Session session

Class org.apache.wicket.devutils.inspector.SessionView extends DevUtilsPanel implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.examples

Class org.apache.wicket.examples.HelloWorldServlet extends javax.servlet.http.HttpServlet implements Serializable

Class org.apache.wicket.examples.WicketExampleHeader extends Panel implements Serializable

Class org.apache.wicket.examples.WicketExamplePage extends WebPage implements Serializable


Package org.apache.wicket.examples.ajax.builtin

Class org.apache.wicket.examples.ajax.builtin.AutoCompletePage extends BasePage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.BasePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.ChoicePage extends BasePage implements Serializable

Serialized Fields

selectedMake

String selectedMake

modelsMap

Map<K,V> modelsMap

Class org.apache.wicket.examples.ajax.builtin.Clock extends Label implements Serializable

Class org.apache.wicket.examples.ajax.builtin.ClockPage extends BasePage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.EditableLabelPage extends BasePage implements Serializable

Serialized Fields

site

String site

text1

String text1

text2

String text2

text3

String text3

refreshCounter

int refreshCounter

Class org.apache.wicket.examples.ajax.builtin.EffectsPage extends BasePage implements Serializable

Serialized Fields

counter1

int counter1

counter2

int counter2

Class org.apache.wicket.examples.ajax.builtin.FileUploadPage extends BasePage implements Serializable

Serialized Fields

file

FileUploadField file

text

TextField<T> text

Class org.apache.wicket.examples.ajax.builtin.FormPage extends BasePage implements Serializable

Serialized Fields

bean

FormPage.Bean bean

Class org.apache.wicket.examples.ajax.builtin.FormPage.Bean extends Object implements Serializable

Serialized Fields

name

String name

email

String email

Class org.apache.wicket.examples.ajax.builtin.GuestBook extends BasePage implements Serializable

Serialized Fields

commentListView

ListView<T> commentListView
The list view that shows comments


comments

WebMarkupContainer comments
Container for the comments, used to update the listview.


text

Component text
The textarea for entering the comments, is updated in the ajax call.

Class org.apache.wicket.examples.ajax.builtin.GuestBook.CommentForm extends Form<Comment> implements Serializable

Class org.apache.wicket.examples.ajax.builtin.Index extends BasePage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.LazyLoadingPage extends BasePage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.LinksPage extends BasePage implements Serializable

Serialized Fields

counter1

int counter1

counter2

int counter2

counter3

int counter3

Class org.apache.wicket.examples.ajax.builtin.OnChangeAjaxBehaviorPage extends BasePage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.PageablesPage extends BasePage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.RatingsPage extends BasePage implements Serializable

serialVersionUID: 1L

Serialized Fields

hasVoted

Boolean hasVoted
keeps track whether the user has already voted on this page, comes typically from the database, or is stored in a cookie on the client side.

Class org.apache.wicket.examples.ajax.builtin.RatingsPage.RatingModel extends Object implements Serializable

Serialized Fields

nrOfVotes

int nrOfVotes

sumOfRatings

int sumOfRatings

rating

double rating

Class org.apache.wicket.examples.ajax.builtin.TabbedPanelPage extends BasePage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.TodoList extends BasePage implements Serializable

Serialized Fields

showItems

WebMarkupContainer showItems
Container for redrawing the todo items list with an AJAX call.


items

List<E> items
The list of todo items.

Class org.apache.wicket.examples.ajax.builtin.TodoList.AddItemsContainer extends WebMarkupContainer implements Serializable

Serialized Fields

linkVisible

boolean linkVisible
Visibility toggle so that either the link or the form is visible.

Class org.apache.wicket.examples.ajax.builtin.TodoList.TodoItem extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

checked

boolean checked
Is the item done?


text

String text
Description of the item.

Class org.apache.wicket.examples.ajax.builtin.TodoList.TodoItemsContainer extends WebMarkupContainer implements Serializable

Class org.apache.wicket.examples.ajax.builtin.WorldClockPage extends BasePage implements Serializable


Package org.apache.wicket.examples.ajax.builtin.modal

Class org.apache.wicket.examples.ajax.builtin.modal.ModalContent1Page extends WebPage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.modal.ModalContent2Page extends WebPage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.modal.ModalPanel1 extends Panel implements Serializable

Class org.apache.wicket.examples.ajax.builtin.modal.ModalWindowPage extends BasePage implements Serializable

Serialized Fields

result

String result

Package org.apache.wicket.examples.ajax.builtin.tree

Class org.apache.wicket.examples.ajax.builtin.tree.BaseTreePage extends BasePage implements Serializable

Class org.apache.wicket.examples.ajax.builtin.tree.EditablePanel extends Panel implements Serializable

Class org.apache.wicket.examples.ajax.builtin.tree.EditableTreeTablePage extends BaseTreePage implements Serializable

Serialized Fields

tree

TreeTable tree

Class org.apache.wicket.examples.ajax.builtin.tree.ModelBean extends Object implements Serializable

Serialized Fields

property1

String property1

property2

String property2

property3

String property3

property4

String property4

property5

String property5

property6

String property6

Class org.apache.wicket.examples.ajax.builtin.tree.PropertyEditableColumn extends PropertyRenderableColumn implements Serializable

Class org.apache.wicket.examples.ajax.builtin.tree.SimpleTreePage extends BaseTreePage implements Serializable

Serialized Fields

tree

BaseTree tree

Class org.apache.wicket.examples.ajax.builtin.tree.TreeTablePage extends BaseTreePage implements Serializable

Serialized Fields

tree

TreeTable tree

Package org.apache.wicket.examples.ajax.prototype

Class org.apache.wicket.examples.ajax.prototype.Index extends WicketExamplePage implements Serializable

Serialized Fields

count

int count
Click count.


counter

Label counter
Label showing count


Package org.apache.wicket.examples.authentication

Class org.apache.wicket.examples.authentication.AdminPage extends BasePage implements Serializable

Class org.apache.wicket.examples.authentication.BasePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.authentication.HomePage extends BasePage implements Serializable

Class org.apache.wicket.examples.authentication.MyAuthenticatedWebSession extends AuthenticatedWebSession implements Serializable

Class org.apache.wicket.examples.authentication.MySignInPage extends SignInPage implements Serializable

Class org.apache.wicket.examples.authentication.MySignOutPage extends SignOutPage implements Serializable


Package org.apache.wicket.examples.authorization

Class org.apache.wicket.examples.authorization.BasePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.authorization.Index extends BasePage implements Serializable

Class org.apache.wicket.examples.authorization.RolesSession extends WebSession implements Serializable

Serialized Fields

user

User user
the current user.

Class org.apache.wicket.examples.authorization.User extends Object implements Serializable

Serialized Fields

uid

String uid

roles

Roles roles

Package org.apache.wicket.examples.authorization.pages

Class org.apache.wicket.examples.authorization.pages.AdminAnnotationsBookmarkablePage extends BasePage implements Serializable

Class org.apache.wicket.examples.authorization.pages.AdminAnnotationsInternalPage extends BasePage implements Serializable

Class org.apache.wicket.examples.authorization.pages.AdminBookmarkablePage extends BasePage implements Serializable

Class org.apache.wicket.examples.authorization.pages.AdminInternalPage extends BasePage implements Serializable

Class org.apache.wicket.examples.authorization.pages.AnnotationsPanelsPage extends BasePage implements Serializable

Serialized Fields

outer

WebMarkupContainer outer

showDummy

boolean showDummy

Class org.apache.wicket.examples.authorization.pages.PanelsPage extends BasePage implements Serializable


Package org.apache.wicket.examples.breadcrumb

Class org.apache.wicket.examples.breadcrumb.FirstPanel extends BreadCrumbPanel implements Serializable

Class org.apache.wicket.examples.breadcrumb.FourthPanel extends BreadCrumbPanel implements Serializable

Class org.apache.wicket.examples.breadcrumb.Index extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.breadcrumb.ResultPanel extends BreadCrumbPanel implements Serializable

Class org.apache.wicket.examples.breadcrumb.SecondPanel extends BreadCrumbPanel implements Serializable

Class org.apache.wicket.examples.breadcrumb.ThirdPanel extends BreadCrumbPanel implements Serializable


Package org.apache.wicket.examples.captcha

Class org.apache.wicket.examples.captcha.Captcha extends WicketExamplePage implements Serializable

serialVersionUID: 1L

Serialized Fields

imagePass

String imagePass
Random captcha password to match against.


properties

ValueMap properties

Package org.apache.wicket.examples.compref

Class org.apache.wicket.examples.compref.Address extends Object implements Serializable

Serialized Fields

address

String address

postcode

String postcode

city

String city

country

String country

Class org.apache.wicket.examples.compref.Book extends Object implements Serializable

Serialized Fields

title

String title

author

String author

isbn

String isbn

Class org.apache.wicket.examples.compref.BookmarkablePage extends WebPage implements Serializable

Class org.apache.wicket.examples.compref.BookmarkablePageLinkPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.BorderPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.ButtonPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.CheckBoxMultipleChoicePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.CheckBoxPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.CheckGroupPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.CheckGroupPage2 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.DropDownChoicePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.ExternalLinkPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.FormPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.FragmentPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.IncludePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.Index extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.LabelPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.LinkPage extends WicketExamplePage implements Serializable

Serialized Fields

count1

Count count1

link1

Link<T> link1

Class org.apache.wicket.examples.compref.ListChoicePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.ListChoicePage.Input extends Object implements Serializable

Serialized Fields

site

String site
the selected site.

Class org.apache.wicket.examples.compref.ListMultipleChoicePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.MultiLineLabelPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.NonBookmarkablePage extends WebPage implements Serializable

Class org.apache.wicket.examples.compref.PageLinkPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.PalettePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.PanelPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.Person extends Object implements Serializable

Serialized Fields

name

String name

lastName

String lastName

dateOfBirth

Date dateOfBirth

address

Address address

Class org.apache.wicket.examples.compref.RadioChoicePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.RadioGroupPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.RadioGroupPage2 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.SelectPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.SubmitLinkPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.TabbedPanelPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.TabbedPanelPage.CssSwitchingLink extends Link implements Serializable

Serialized Fields

clazz

String clazz

Class org.apache.wicket.examples.compref.TextAreaPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.TextFieldPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.compref.XmlPage extends WebPage implements Serializable


Package org.apache.wicket.examples.customresourceloading

Class org.apache.wicket.examples.customresourceloading.AlternativePageFromWebContext extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.customresourceloading.Index extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.customresourceloading.PageFromWebContext extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.customresourceloading.PageWithCustomLoading extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.dates

Class org.apache.wicket.examples.dates.DatesPage extends WicketExamplePage implements Serializable

Serialized Fields

date

Date date

selectedLocale

Locale selectedLocale

Package org.apache.wicket.examples.echo

Class org.apache.wicket.examples.echo.Echo extends WicketExamplePage implements Serializable

Serialized Fields

message

String message

Package org.apache.wicket.examples.encodings

Class org.apache.wicket.examples.encodings.Home extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.forminput

Class org.apache.wicket.examples.forminput.BeforeAndAfterBorder extends MarkupComponentBorder implements Serializable

Class org.apache.wicket.examples.forminput.FormInput extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.forminput.FormInputModel extends Object implements Serializable

Serialized Fields

booleanProperty

Boolean booleanProperty

doubleProperty

Double doubleProperty

integerInRangeProperty

Integer integerInRangeProperty

integerProperty

Integer integerProperty

lines

List<E> lines

multiply

Integer multiply

numberRadioChoice

String numberRadioChoice

numbersCheckGroup

List<E> numbersCheckGroup

numbersGroup

String numbersGroup

phoneNumberUS

UsPhoneNumber phoneNumberUS
US phone number with mask '(###) ###-####'.


siteSelection

Set<E> siteSelection

stringProperty

String stringProperty

urlProperty

URL urlProperty

Class org.apache.wicket.examples.forminput.FormInputModel.Line extends Object implements Serializable

Serialized Fields

text

String text

Class org.apache.wicket.examples.forminput.Multiply extends FormComponentPanel<Integer> implements Serializable

Serialized Fields

left

TextField<T> left

lhs

int lhs

rhs

int rhs

right

TextField<T> right

Class org.apache.wicket.examples.forminput.UsPhoneNumber extends Object implements Serializable

Serialized Fields

number

String number

Package org.apache.wicket.examples.frames

Class org.apache.wicket.examples.frames.BodyFrame extends WebPage implements Serializable

Serialized Fields

frameTarget

FrameTarget frameTarget

Class org.apache.wicket.examples.frames.FrameTarget extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

frameClass

Class<T> frameClass
the class of the bookmarkable page.

Class org.apache.wicket.examples.frames.Home extends WebPage implements Serializable

Class org.apache.wicket.examples.frames.LeftFrame extends WebPage implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.examples.frames.Page1 extends WebPage implements Serializable

Class org.apache.wicket.examples.frames.Page2 extends WebPage implements Serializable

Class org.apache.wicket.examples.frames.TopFrame extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.guestbook

Class org.apache.wicket.examples.guestbook.Comment extends Object implements Serializable

Serialized Fields

text

String text

date

Date date

Class org.apache.wicket.examples.guestbook.GuestBook extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.guestbook.GuestBook.CommentForm extends Form<ValueMap> implements Serializable


Package org.apache.wicket.examples.guice

Class org.apache.wicket.examples.guice.HomePage extends WicketExamplePage implements Serializable

Serialized Fields

service

IMyService service

labelValue

String labelValue

Package org.apache.wicket.examples.hangman

Class org.apache.wicket.examples.hangman.Game extends Object implements Serializable

Serialized Fields

guessesAllowed

int guessesAllowed
Number of guesses allowed


guessesRemaining

int guessesRemaining
Number of guesses remaining


letters

List<E> letters
The letters


word

Word word
The word being guessed by the user


wordGenerator

WordGenerator wordGenerator
Word generator

Class org.apache.wicket.examples.hangman.Guess extends HangmanPage implements Serializable

Class org.apache.wicket.examples.hangman.HangmanPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.hangman.HangmanSession extends WebSession implements Serializable

Serialized Fields

game

Game game
The game

Class org.apache.wicket.examples.hangman.Home extends HangmanPage implements Serializable

Class org.apache.wicket.examples.hangman.Letter extends Object implements Serializable

Serialized Fields

guessed

boolean guessed
True if the letter has been guessed


letter

char letter
The letter

Class org.apache.wicket.examples.hangman.Lose extends HangmanPage implements Serializable

Class org.apache.wicket.examples.hangman.Win extends HangmanPage implements Serializable

Class org.apache.wicket.examples.hangman.Word extends Object implements Serializable

Serialized Fields

letters

List<E> letters
The word

Class org.apache.wicket.examples.hangman.WordGenerator extends Object implements Serializable

Serialized Fields

words

List<E> words
List of words


index

int index
Index into words


Package org.apache.wicket.examples.hellobrowser

Class org.apache.wicket.examples.hellobrowser.HelloBrowser extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.helloworld

Class org.apache.wicket.examples.helloworld.HelloWorld extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.images

Class org.apache.wicket.examples.images.Home extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.kittenCaptcha

Class org.apache.wicket.examples.kittenCaptcha.HomePage extends WicketExamplePage implements Serializable

serialVersionUID: 1L

Serialized Fields

captcha

KittenCaptchaPanel captcha

errors

int errors

Package org.apache.wicket.examples.library

Class org.apache.wicket.examples.library.AuthenticatedWebPage extends WicketExamplePage implements Serializable

Serialized Fields

border

Border border

Class org.apache.wicket.examples.library.Book extends Object implements Serializable

Serialized Fields

id

long id

title

String title

author

String author

companionBook

Book companionBook

relatedBook

Book relatedBook

isFiction

boolean isFiction

writingStyles

List<E> writingStyles

Class org.apache.wicket.examples.library.Book.WritingStyle extends EnumeratedType implements Serializable

Class org.apache.wicket.examples.library.BookDetails extends AuthenticatedWebPage implements Serializable

Class org.apache.wicket.examples.library.EditBook extends AuthenticatedWebPage implements Serializable

Class org.apache.wicket.examples.library.EditBook.EditBookForm extends Form<Book> implements Serializable

Class org.apache.wicket.examples.library.Home extends AuthenticatedWebPage implements Serializable

Class org.apache.wicket.examples.library.LibraryApplicationBorder extends Border implements Serializable

Class org.apache.wicket.examples.library.LibrarySession extends WebSession implements Serializable

Serialized Fields

user

User user

Class org.apache.wicket.examples.library.SignIn extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.library.User extends Object implements Serializable

Serialized Fields

name

String name

books

List<E> books

Package org.apache.wicket.examples.linkomatic

Class org.apache.wicket.examples.linkomatic.Book extends Object implements Serializable

Serialized Fields

title

String title

Class org.apache.wicket.examples.linkomatic.BookDetails extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.linkomatic.Home extends WicketExamplePage implements Serializable

Serialized Fields

linkClickCount

int linkClickCount
click count for Link.


onClickLinkClickCount

int onClickLinkClickCount
click count for OnClickLink.

Class org.apache.wicket.examples.linkomatic.Page1 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.linkomatic.Page2 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.linkomatic.Page3 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.linkomatic.Popup extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.navomatic

Class org.apache.wicket.examples.navomatic.NavomaticBorder extends Border implements Serializable

Class org.apache.wicket.examples.navomatic.Page1 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.navomatic.Page2 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.navomatic.Page3 extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.nested

Class org.apache.wicket.examples.nested.Home extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.nested.RecursivePanel extends Panel implements Serializable


Package org.apache.wicket.examples.niceurl

Class org.apache.wicket.examples.niceurl.Home extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.niceurl.Page1 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.niceurl.Page2 extends WicketExamplePage implements Serializable

Serialized Fields

random

Random random

Class org.apache.wicket.examples.niceurl.Page2QP extends Page2 implements Serializable


Package org.apache.wicket.examples.niceurl.mounted

Class org.apache.wicket.examples.niceurl.mounted.Page3 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.niceurl.mounted.Page4 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.niceurl.mounted.Page5 extends WicketExamplePage implements Serializable

Serialized Fields

random

Random random

Package org.apache.wicket.examples.panels.signin

Class org.apache.wicket.examples.panels.signin.SignInPanel extends Panel implements Serializable

Serialized Fields

includeRememberMe

boolean includeRememberMe
True if the panel should display a remember-me checkbox


password

PasswordTextField password
Field for password.


rememberMe

boolean rememberMe
True if the user should be remembered via form persistence (cookies)


username

TextField<T> username
Field for user name.

Class org.apache.wicket.examples.panels.signin.SignInPanel.SignInForm extends Form implements Serializable

Serialized Fields

properties

ValueMap properties
El-cheapo model for form.


Package org.apache.wicket.examples.portlet.menu

Class org.apache.wicket.examples.portlet.menu.EditPage extends WebPage implements Serializable

Serialized Fields

ddc

DropDownChoice<T> ddc

Class org.apache.wicket.examples.portlet.menu.ExampleApplication extends Object implements Serializable

Serialized Fields

displayName

String displayName

filterPath

String filterPath

filterQuery

String filterQuery

initParameters

Map<K,V> initParameters

description

String description

Class org.apache.wicket.examples.portlet.menu.HeaderPage extends WebPage implements Serializable

Class org.apache.wicket.examples.portlet.menu.MenuPage extends WebPage implements Serializable


Package org.apache.wicket.examples.pub

Class org.apache.wicket.examples.pub.Home extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.pub2

Class org.apache.wicket.examples.pub2.Home extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.repeater

Class org.apache.wicket.examples.repeater.AjaxDataTablePage extends BasePage implements Serializable

Class org.apache.wicket.examples.repeater.BasePage extends ExamplePage implements Serializable

Serialized Fields

selected

Contact selected

Class org.apache.wicket.examples.repeater.Contact extends Object implements Serializable

Serialized Fields

id

long id

firstName

String firstName

lastName

String lastName

homePhone

String homePhone

cellPhone

String cellPhone

Class org.apache.wicket.examples.repeater.ContactDataProvider extends Object implements Serializable

Class org.apache.wicket.examples.repeater.DataGridPage extends BasePage implements Serializable

Class org.apache.wicket.examples.repeater.DataTablePage extends BasePage implements Serializable

Class org.apache.wicket.examples.repeater.DetachableContactModel extends LoadableDetachableModel<Contact> implements Serializable

Serialized Fields

id

long id

Class org.apache.wicket.examples.repeater.ExamplePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.repeater.FormPage extends BasePage implements Serializable

Serialized Fields

form

Form<T> form

Class org.apache.wicket.examples.repeater.GridViewPage extends BasePage implements Serializable

Class org.apache.wicket.examples.repeater.Index extends ExamplePage implements Serializable

Class org.apache.wicket.examples.repeater.OIRPage extends BasePage implements Serializable

Class org.apache.wicket.examples.repeater.PagingPage extends BasePage implements Serializable

Class org.apache.wicket.examples.repeater.RefreshingPage extends BasePage implements Serializable

Class org.apache.wicket.examples.repeater.RepeatingPage extends BasePage implements Serializable

Class org.apache.wicket.examples.repeater.SimplePage extends BasePage implements Serializable

Class org.apache.wicket.examples.repeater.SortableContactDataProvider extends SortableDataProvider<Contact> implements Serializable

Class org.apache.wicket.examples.repeater.SortingPage extends BasePage implements Serializable


Package org.apache.wicket.examples.signin

Class org.apache.wicket.examples.signin.Home extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.signin.SignIn extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.signin.SignIn.SignInForm extends Form implements Serializable

Serialized Fields

properties

ValueMap properties

Class org.apache.wicket.examples.signin.SignInSession extends WebSession implements Serializable

Serialized Fields

user

String user
Trivial user representation


Package org.apache.wicket.examples.signin2

Class org.apache.wicket.examples.signin2.AuthenticatedWebPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.signin2.Home extends AuthenticatedWebPage implements Serializable

Class org.apache.wicket.examples.signin2.SignIn2 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.signin2.SignIn2Session extends WebSession implements Serializable

Serialized Fields

user

String user
Trivial user representation

Class org.apache.wicket.examples.signin2.SignOut extends AuthenticatedWebPage implements Serializable


Package org.apache.wicket.examples.source

Class org.apache.wicket.examples.source.SourcesPage extends WebPage implements Serializable

Serialized Fields

name

String name
The selected name of the packaged resource to display.


codePanel

Component codePanel
The panel for setting the ajax calls.


filename

Label filename

Class org.apache.wicket.examples.source.SourcesPage.CodePanel extends WebMarkupContainer implements Serializable

Class org.apache.wicket.examples.source.SourcesPage.FilesBrowser extends WebMarkupContainer implements Serializable

Class org.apache.wicket.examples.source.SourcesPage.PackagedResourcesModel extends AbstractReadOnlyModel<List<String>> implements Serializable

Serialized Fields

resources

List<E> resources

Class org.apache.wicket.examples.source.SourcesPage.SourceModel extends AbstractReadOnlyModel<String> implements Serializable


Package org.apache.wicket.examples.stateless

Class org.apache.wicket.examples.stateless.Index extends WebPage implements Serializable

Class org.apache.wicket.examples.stateless.SessionModel extends AbstractReadOnlyModel<String> implements Serializable

Class org.apache.wicket.examples.stateless.StatefulPage extends WebPage implements Serializable

Serialized Fields

linkClickCount

int linkClickCount
click count for Link.

Class org.apache.wicket.examples.stateless.StatelessPage extends WebPage implements Serializable

Serialized Fields

number

Integer number

Class org.apache.wicket.examples.stateless.StatelessPage1 extends WebPage implements Serializable

Serialized Fields

number

Integer number

Class org.apache.wicket.examples.stateless.StatelessPage2 extends WebPage implements Serializable

Serialized Fields

number

Integer number

Class org.apache.wicket.examples.stateless.StatelessPage3 extends WebPage implements Serializable

Serialized Fields

number

Integer number

Package org.apache.wicket.examples.staticpages

Class org.apache.wicket.examples.staticpages.EmailPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.staticpages.Home extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.staticpages.Page extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.staticpages.Sent extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.stockquote

Class org.apache.wicket.examples.stockquote.StockQuoteLabel extends WebComponent implements Serializable

Class org.apache.wicket.examples.stockquote.StockQuoteLabel2 extends Label implements Serializable

Class org.apache.wicket.examples.stockquote.StockQuotePage extends WicketExamplePage implements Serializable

Serialized Fields

quote

StockQuotePage.Quote quote
Quote instance used for communicating between the form input field and the display labels for showing the stock quote.

Class org.apache.wicket.examples.stockquote.StockQuotePage.Quote extends Object implements Serializable

Serialized Fields

symbol

String symbol

Package org.apache.wicket.examples.template

Class org.apache.wicket.examples.template.Banner extends Panel implements Serializable

Class org.apache.wicket.examples.template.Banner1 extends Banner implements Serializable

Class org.apache.wicket.examples.template.Banner2 extends Banner implements Serializable

Class org.apache.wicket.examples.template.Index extends WicketExamplePage implements Serializable


Package org.apache.wicket.examples.template.border

Class org.apache.wicket.examples.template.border.Page1 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.template.border.Page2 extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.template.border.TemplateBorder extends Border implements Serializable

Serialized Fields

currentBanner

Banner currentBanner
the current banner.


Package org.apache.wicket.examples.template.pageinheritance

Class org.apache.wicket.examples.template.pageinheritance.Page1 extends TemplatePage implements Serializable

Class org.apache.wicket.examples.template.pageinheritance.Page2 extends TemplatePage implements Serializable

Class org.apache.wicket.examples.template.pageinheritance.Panel1 extends TemplatePanel implements Serializable

Class org.apache.wicket.examples.template.pageinheritance.TemplatePage extends WicketExamplePage implements Serializable

Serialized Fields

pageTitle

String pageTitle
title of the current page.


currentBanner

Banner currentBanner
the current banner.

Class org.apache.wicket.examples.template.pageinheritance.TemplatePanel extends Panel implements Serializable


Package org.apache.wicket.examples.unicodeconverter

Class org.apache.wicket.examples.unicodeconverter.UnicodeConverter extends WicketExamplePage implements Serializable

Serialized Fields

source

String source

translationType

String translationType

Package org.apache.wicket.examples.upload

Class org.apache.wicket.examples.upload.MultiUploadPage extends WicketExamplePage implements Serializable

Serialized Fields

fileListView

org.apache.wicket.examples.upload.MultiUploadPage.FileListView fileListView
Reference to listview for easy access.

Class org.apache.wicket.examples.upload.UploadPage extends WicketExamplePage implements Serializable

Serialized Fields

fileListView

org.apache.wicket.examples.upload.UploadPage.FileListView fileListView
Reference to listview for easy access.


Package org.apache.wicket.examples.velocity

Class org.apache.wicket.examples.velocity.DynamicPage extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.velocity.Field extends Object implements Serializable

Serialized Fields

fieldName

String fieldName

fieldSize

int fieldSize

Class org.apache.wicket.examples.velocity.Home extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.velocity.Person extends Object implements Serializable

Serialized Fields

firstName

String firstName

lastName

String lastName

Class org.apache.wicket.examples.velocity.TemplatePage extends WicketExamplePage implements Serializable

Serialized Fields

template

IStringResourceStream template
the current template contents.


templateContext

IModel<T> templateContext
context to be used by the template.


Package org.apache.wicket.examples.wizard

Class org.apache.wicket.examples.wizard.Index extends WicketExamplePage implements Serializable

Class org.apache.wicket.examples.wizard.NewUserWizard extends Wizard implements Serializable

Serialized Fields

assignRoles

boolean assignRoles
Whether the assign roles step should be executed.


user

User user
The user we are editing.

Class org.apache.wicket.examples.wizard.StaticWizard extends Wizard implements Serializable

Class org.apache.wicket.examples.wizard.StaticWizardWithPanels extends Wizard implements Serializable

Class org.apache.wicket.examples.wizard.User extends Object implements Serializable

Serialized Fields

department

String department

email

String email

firstName

String firstName

lastName

String lastName

roles

Set<E> roles

rolesSetName

String rolesSetName

userName

String userName

Class org.apache.wicket.examples.wizard.WizardPage extends WicketExamplePage implements Serializable


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

Class org.apache.wicket.extensions.ajax.markup.html.AjaxEditableChoiceLabel extends AjaxEditableLabel<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.extensions.ajax.markup.html.AjaxEditableLabel extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

editor

FormComponent<T> editor
editor component.


label

WebComponent label
label component.

Class org.apache.wicket.extensions.ajax.markup.html.AjaxEditableLabel.EditorAjaxBehavior extends AbstractDefaultAjaxBehavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.AjaxEditableLabel.LabelAjaxBehavior extends AjaxEventBehavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.AjaxEditableMultiLineLabel extends AjaxEditableLabel<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

rows

int rows
text area's number of rows.


cols

int cols
text area's number of columns.

Class org.apache.wicket.extensions.ajax.markup.html.AjaxIndicatorAppender extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component
Component instance this behavior is bound to

Class org.apache.wicket.extensions.ajax.markup.html.AjaxLazyLoadPanel extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

state

byte state

Class org.apache.wicket.extensions.ajax.markup.html.IndicatingAjaxButton extends AjaxButton implements Serializable

serialVersionUID: 1L

Serialized Fields

indicatorAppender

AjaxIndicatorAppender indicatorAppender

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

serialVersionUID: 1L

Serialized Fields

indicatorAppender

AjaxIndicatorAppender indicatorAppender

Class org.apache.wicket.extensions.ajax.markup.html.IndicatingAjaxLink extends AjaxLink<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

indicatorAppender

AjaxIndicatorAppender indicatorAppender

Class org.apache.wicket.extensions.ajax.markup.html.IndicatingAjaxSubmitButton extends IndicatingAjaxButton implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.WicketAjaxIndicatorAppender extends AjaxIndicatorAppender implements Serializable

serialVersionUID: 1L


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

Class org.apache.wicket.extensions.ajax.markup.html.autocomplete.AbstractAutoCompleteBehavior extends AbstractDefaultAjaxBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

preselect

boolean preselect
Deprecated. 
Use AutoCompleteSettings.setPreselect(boolean)


settings

AutoCompleteSettings settings

Class org.apache.wicket.extensions.ajax.markup.html.autocomplete.AbstractAutoCompleteRenderer extends Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.autocomplete.AbstractAutoCompleteTextRenderer extends AbstractAutoCompleteRenderer<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteBehavior extends AbstractAutoCompleteBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

renderer

IAutoCompleteRenderer<T> renderer

Class org.apache.wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteSettings extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

preselect

boolean preselect

maxHeightInPx

int maxHeightInPx

showListOnEmptyInput

boolean showListOnEmptyInput

useSmartPositioning

boolean useSmartPositioning

useHideShowCoveredIEFix

boolean useHideShowCoveredIEFix

cssClassName

String cssClassName

adjustInputWidth

boolean adjustInputWidth

showListOnFocusGain

boolean showListOnFocusGain

showCompleteListOnFocusGain

boolean showCompleteListOnFocusGain

throttleDelay

int throttleDelay

Class org.apache.wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteTextField extends TextField<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

behavior

AutoCompleteBehavior<T> behavior
auto complete behavior attached to this textfield


renderer

IAutoCompleteRenderer<T> renderer
renderer


settings

AutoCompleteSettings settings
settings

Class org.apache.wicket.extensions.ajax.markup.html.autocomplete.DefaultCssAutocompleteTextField extends AutoCompleteTextField<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.autocomplete.StringAutoCompleteRenderer extends AbstractAutoCompleteTextRenderer<Object> implements Serializable

serialVersionUID: 1L


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

Class org.apache.wicket.extensions.ajax.markup.html.form.upload.UploadInfo extends Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.form.upload.UploadProgressBar extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

form

Form<T> form

statusDiv

WebMarkupContainer statusDiv

barDiv

WebMarkupContainer barDiv

uploadField

FileUploadField uploadField

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

Class org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

deletePageMap

boolean deletePageMap

shown

boolean shown
True while the ModalWindows is showing


renderScript

boolean renderScript

empty

WebMarkupContainer empty
empty container - used when no component is added


minimalWidth

int minimalWidth

minimalHeight

int minimalHeight

cssClassName

String cssClassName

initialWidth

int initialWidth

initialHeight

int initialHeight

useInitialHeight

boolean useInitialHeight

resizable

boolean resizable

widthUnit

String widthUnit

heightUnit

String heightUnit

cookieName

String cookieName

title

IModel<T> title

maskType

ModalWindow.MaskType maskType

pageMapName

String pageMapName

pageCreator

ModalWindow.PageCreator pageCreator

closeButtonCallback

ModalWindow.CloseButtonCallback closeButtonCallback

windowClosedCallback

ModalWindow.WindowClosedCallback windowClosedCallback

Class org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.CloseButtonBehavior extends AbstractDefaultAjaxBehavior implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.MaskType extends EnumeratedType implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.extensions.ajax.markup.html.repeater.data.sort

Class org.apache.wicket.extensions.ajax.markup.html.repeater.data.sort.AjaxFallbackOrderByBorder extends Border implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.repeater.data.sort.AjaxFallbackOrderByLink extends OrderByLink implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.extensions.ajax.markup.html.repeater.data.table

Class org.apache.wicket.extensions.ajax.markup.html.repeater.data.table.AjaxFallbackDefaultDataTable extends DataTable<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.repeater.data.table.AjaxFallbackHeadersToolbar extends HeadersToolbar implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.ajax.markup.html.repeater.data.table.AjaxNavigationToolbar extends NavigationToolbar implements Serializable

serialVersionUID: 1L


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

Class org.apache.wicket.extensions.ajax.markup.html.tabs.AjaxTabbedPanel extends TabbedPanel implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.extensions.breadcrumb

Class org.apache.wicket.extensions.breadcrumb.BreadCrumbBar extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

decorated

IBreadCrumbModel decorated

Class org.apache.wicket.extensions.breadcrumb.BreadCrumbBar.BreadCrumbsListView extends ListView<IBreadCrumbParticipant> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.breadcrumb.BreadCrumbLink extends Link<Void> implements Serializable

serialVersionUID: 1L

Serialized Fields

breadCrumbModel

IBreadCrumbModel breadCrumbModel
The bread crumb model.

Class org.apache.wicket.extensions.breadcrumb.BreadCrumbModelListenerSupport extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

listeners

List<E> listeners
listeners for bread crumb events.

Class org.apache.wicket.extensions.breadcrumb.DefaultBreadCrumbsModel extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

activeParticipant

IBreadCrumbParticipant activeParticipant
The currently active participant, if any (possibly null).


crumbs

List<E> crumbs
Holds the current list of crumbs.


listenerSupport

BreadCrumbModelListenerSupport listenerSupport
listeners utility.


Package org.apache.wicket.extensions.breadcrumb.panel

Class org.apache.wicket.extensions.breadcrumb.panel.BreadCrumbPanel extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

breadCrumbModel

IBreadCrumbModel breadCrumbModel
The bread crumb model.


decorated

IBreadCrumbParticipant decorated
Implementation of the participant.

Class org.apache.wicket.extensions.breadcrumb.panel.BreadCrumbPanelFactory extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

panelClass

Class<T> panelClass
Class to construct.

Class org.apache.wicket.extensions.breadcrumb.panel.BreadCrumbPanelLink extends BreadCrumbLink implements Serializable

serialVersionUID: 1L

Serialized Fields

breadCrumbModel

IBreadCrumbModel breadCrumbModel
The bread crumb model.


breadCrumbPanelFactory

IBreadCrumbPanelFactory breadCrumbPanelFactory
factory for creating bread crumbs panels.

Class org.apache.wicket.extensions.breadcrumb.panel.BreadCrumbParticipantDelegate extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component

Package org.apache.wicket.extensions.captcha.kittens

Class org.apache.wicket.extensions.captcha.kittens.KittenCaptchaPanel extends Panel implements Serializable

serialVersionUID: 2711167040323855070L

Serialized Fields

animals

org.apache.wicket.extensions.captcha.kittens.KittenCaptchaPanel.PlacedAnimalList animals
The various animals as placed animals


animalSelectionLabel

Label animalSelectionLabel
Label that shows request status


image

Image image
The image component


imageResource

org.apache.wicket.extensions.captcha.kittens.KittenCaptchaPanel.CaptchaImageResource imageResource
The image resource referenced by the Image component


imageSize

Dimension imageSize
Size of this kitten panel's image


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

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

serialVersionUID: 1L

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

serialVersionUID: 1L


Package org.apache.wicket.extensions.markup.html.captcha

Class org.apache.wicket.extensions.markup.html.captcha.CaptchaImageResource extends DynamicImageResource implements Serializable

serialVersionUID: 1L

Serialized Fields

challengeId

IModel<T> challengeId

challengeIdhashCode

Integer challengeIdhashCode

charAttsList

List<E> charAttsList

fontNames

List<E> fontNames

fontSize

int fontSize

fontStyle

int fontStyle

height

int height

margin

int margin

width

int width

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

Class org.apache.wicket.extensions.markup.html.form.DateTextField extends TextField<Date> implements Serializable

serialVersionUID: 1L

Serialized Fields

datePattern

String datePattern
The date pattern of the text field


converter

IConverter converter
The converter for the TextField


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

Class org.apache.wicket.extensions.markup.html.form.palette.Palette extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

choicesModel

IModel<T> choicesModel
collection containing all available choices


choiceRenderer

IChoiceRenderer<T> choiceRenderer
choice render used to render the choices in both available and selected collections


rows

int rows
number of rows to show in the select boxes


allowOrder

boolean allowOrder
if reordering of selected items is allowed in


recorderComponent

Recorder<T> recorderComponent
recorder component used to track user's selection. it is updated by javascript on changes.


choicesComponent

Component choicesComponent
component used to represent all available choices. by default this is a select box with multiple attribute


selectionComponent

Component selectionComponent
component used to represent selected items. by default this is a select box with multiple attribute


Package org.apache.wicket.extensions.markup.html.form.palette.component

Class org.apache.wicket.extensions.markup.html.form.palette.component.AbstractOptions extends FormComponent<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

palette

Palette<T> palette

Class org.apache.wicket.extensions.markup.html.form.palette.component.Choices extends AbstractOptions<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.form.palette.component.Recorder extends HiddenField<Object> implements Serializable

serialVersionUID: 1L

Serialized Fields

ids

String[] ids
conveniently maintained array of selected ids


palette

Palette<T> palette
parent palette object


attached

boolean attached

Class org.apache.wicket.extensions.markup.html.form.palette.component.Selection extends AbstractOptions<T> implements Serializable

serialVersionUID: 1L


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

Class org.apache.wicket.extensions.markup.html.form.select.Select extends FormComponent implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.form.select.SelectOption extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.form.select.SelectOptions extends RepeatingView implements Serializable

serialVersionUID: 1L

Serialized Fields

recreateChoices

boolean recreateChoices

renderer

IOptionRenderer<T> renderer

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

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

serialVersionUID: 1L

Serialized Fields

unscaledImageResource

WebResource unscaledImageResource
the unscaled, original image resource.


maxSize

int maxSize
maximum size (width or height) for resize operation.


scaleHints

int scaleHints
hint(s) for the scale operation.


Package org.apache.wicket.extensions.markup.html.repeater.data.grid

Class org.apache.wicket.extensions.markup.html.repeater.data.grid.AbstractDataGridView extends DataViewBase<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

populators

ICellPopulator<T>[] populators

Class org.apache.wicket.extensions.markup.html.repeater.data.grid.DataGridView extends AbstractDataGridView<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.grid.PropertyPopulator extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

property

String property

Package org.apache.wicket.extensions.markup.html.repeater.data.sort

Class org.apache.wicket.extensions.markup.html.repeater.data.sort.OrderByBorder extends Border implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.sort.OrderByLink extends Link implements Serializable

serialVersionUID: 1L

Serialized Fields

property

String property
sortable property


stateLocator

ISortStateLocator stateLocator
locator for sort state object

Class org.apache.wicket.extensions.markup.html.repeater.data.sort.OrderByLink.CssModifier extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

link

OrderByLink link

provider

OrderByLink.ICssProvider provider

Class org.apache.wicket.extensions.markup.html.repeater.data.sort.OrderByLink.CssProvider extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

ascending

String ascending

descending

String descending

none

String none

Class org.apache.wicket.extensions.markup.html.repeater.data.sort.OrderByLink.DefaultCssProvider extends OrderByLink.CssProvider implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.sort.OrderByLink.VoidCssProvider extends OrderByLink.CssProvider implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.extensions.markup.html.repeater.data.table

Class org.apache.wicket.extensions.markup.html.repeater.data.table.AbstractColumn extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

displayModel

IModel<T> displayModel

sortProperty

String sortProperty

Class org.apache.wicket.extensions.markup.html.repeater.data.table.AbstractToolbar extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

table

DataTable<T> table

Class org.apache.wicket.extensions.markup.html.repeater.data.table.DataTable extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

datagrid

DataGridView<T> datagrid

body

WebMarkupContainer body

columns

IColumn<T>[] columns

topToolbars

RepeatingView topToolbars

bottomToolbars

RepeatingView bottomToolbars

Class org.apache.wicket.extensions.markup.html.repeater.data.table.DefaultDataTable extends DataTable<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.table.HeaderlessColumn extends AbstractColumn<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.table.HeadersToolbar extends AbstractToolbar implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.table.NavigationToolbar extends AbstractToolbar implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.table.NavigatorLabel extends Label implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.table.NoRecordsToolbar extends AbstractToolbar implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.table.PropertyColumn extends AbstractColumn<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

propertyExpression

String propertyExpression

Package org.apache.wicket.extensions.markup.html.repeater.data.table.filter

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.AbstractFilter extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

form

FilterForm<T> form

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.ChoiceFilter extends AbstractFilter implements Serializable

serialVersionUID: 1L

Serialized Fields

choice

DropDownChoice<T> choice

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.ChoiceFilteredPropertyColumn extends FilteredPropertyColumn<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

filterChoices

IModel<T> filterChoices

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.FilteredAbstractColumn extends AbstractColumn<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.FilteredPropertyColumn extends PropertyColumn<T> implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.FilterForm extends Form<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

hidden

HiddenField<T> hidden

locator

IFilterStateLocator<T> locator

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.FilterToolbar extends AbstractToolbar implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.GoAndClearFilter extends GoFilter implements Serializable

serialVersionUID: 1L

Serialized Fields

clear

Button clear

originalState

Object originalState

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.GoFilter extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

go

Button go

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.NoFilter extends Panel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.TextFilter extends AbstractFilter implements Serializable

serialVersionUID: 1L

Serialized Fields

filter

TextField<T> filter

Class org.apache.wicket.extensions.markup.html.repeater.data.table.filter.TextFilteredPropertyColumn extends FilteredPropertyColumn<T> implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.extensions.markup.html.repeater.util

Class org.apache.wicket.extensions.markup.html.repeater.util.SingleSortState extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

param

SortParam param

Class org.apache.wicket.extensions.markup.html.repeater.util.SortableDataProvider extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

state

SingleSortState state

Class org.apache.wicket.extensions.markup.html.repeater.util.SortParam extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

property

String property

asc

boolean asc

Package org.apache.wicket.extensions.markup.html.tabs

Class org.apache.wicket.extensions.markup.html.tabs.AbstractTab extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

title

IModel<T> title

Class org.apache.wicket.extensions.markup.html.tabs.PanelCachingTab extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

panel

Panel panel

delegate

ITab delegate

Class org.apache.wicket.extensions.markup.html.tabs.TabbedPanel extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

tabs

List<E> tabs

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

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

serialVersionUID: 1L

Serialized Fields

linkType

DefaultAbstractTree.LinkType linkType
The link type, default is ajax.

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

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.tree.Tree extends DefaultAbstractTree implements Serializable

serialVersionUID: 1L


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

Class org.apache.wicket.extensions.markup.html.tree.table.AbstractColumn extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

header

String header

location

ColumnLocation location

treeTable

TreeTable treeTable

Class org.apache.wicket.extensions.markup.html.tree.table.AbstractRenderableColumn extends AbstractColumn implements Serializable

serialVersionUID: 1L

Serialized Fields

contentAsTooltip

boolean contentAsTooltip

escapeContent

boolean escapeContent

Class org.apache.wicket.extensions.markup.html.tree.table.AbstractTreeColumn extends AbstractColumn implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.tree.table.ColumnLocation extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

alignment

ColumnLocation.Alignment alignment

size

int size

unit

ColumnLocation.Unit unit

Class org.apache.wicket.extensions.markup.html.tree.table.ColumnLocation.Alignment extends EnumeratedType implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.tree.table.ColumnLocation.Unit extends EnumeratedType implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.markup.html.tree.table.PropertyRenderableColumn extends AbstractRenderableColumn implements Serializable

serialVersionUID: 1L

Serialized Fields

converter

IConverter converter

locale

Locale locale

propertyExpression

String propertyExpression

Class org.apache.wicket.extensions.markup.html.tree.table.PropertyTreeColumn extends AbstractTreeColumn implements Serializable

serialVersionUID: 1L

Serialized Fields

converter

IConverter converter

locale

Locale locale

propertyExpression

String propertyExpression

Class org.apache.wicket.extensions.markup.html.tree.table.TreeTable extends DefaultAbstractTree implements Serializable

serialVersionUID: 1L

Serialized Fields

columns

IColumn[] columns

Package org.apache.wicket.extensions.model

Class org.apache.wicket.extensions.model.AbstractCheckBoxModel extends Object implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.extensions.rating

Class org.apache.wicket.extensions.rating.RatingPanel extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

nrOfStars

IModel<T> nrOfStars
The number of stars that need to be shown, should result in an Integer object.


nrOfVotes

IModel<T> nrOfVotes
The number of votes that have been cast, should result in an Integer object.


hasVoted

IModel<T> hasVoted
The flag on whether the current user has voted already.


ratingLabel

Component ratingLabel
Handle to the rating label to set the visibility.


Package org.apache.wicket.extensions.validation.validator

Class org.apache.wicket.extensions.validation.validator.RfcCompliantEmailAddressValidator extends StringValidator implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.extensions.wizard

Class org.apache.wicket.extensions.wizard.AbstractWizardModel extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

cancelVisible

boolean cancelVisible
Whether cancel functionality is available.


lastVisible

boolean lastVisible
Whether the last button should be shown at all; false by default.


wizardModelListeners

List<E> wizardModelListeners
Listeners for model events.

Class org.apache.wicket.extensions.wizard.CancelButton extends WizardButton implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.wizard.FinishButton extends WizardButton implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.wizard.LastButton extends WizardButton implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.wizard.NextButton extends WizardButton implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.wizard.PreviousButton extends WizardButton implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.wizard.StaticContentStep extends WizardStep implements Serializable

serialVersionUID: 1L

Serialized Fields

allowHtml

boolean allowHtml
Whether HTML codes should be rendered as is (true), or should be escaped (false).


content

IModel<T> content
The model that provided the actual content.

Class org.apache.wicket.extensions.wizard.Wizard extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

form

Form<T> form
The form in which the view is nested, and on which the wizard buttons work.


wizardModel

IWizardModel wizardModel
The wizard model.

Class org.apache.wicket.extensions.wizard.WizardButton extends Button implements Serializable

serialVersionUID: 1L

Serialized Fields

wizard

IWizard wizard
The enclosing wizard.

Class org.apache.wicket.extensions.wizard.WizardButtonBar extends Panel implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.wizard.WizardModel extends AbstractWizardModel implements Serializable

serialVersionUID: 1L

Serialized Fields

activeStep

IWizardStep activeStep
The currently active step.


conditions

List<E> conditions
Conditions with steps.


history

ArrayListStack<T> history
State history.


steps

List<E> steps
The wizard steps.

Class org.apache.wicket.extensions.wizard.WizardStep extends Panel implements Serializable

serialVersionUID: 1L

Serialized Fields

complete

boolean complete
Marks this step as being fully configured. Only when this is true can the wizard progress. True by default as that works best with normal forms. Clients can set this to false if some intermediate step, like a file upload, needs to be completed before the wizard may progress.


summary

IModel<T> summary
A summary of this step, or some usage advice.


title

IModel<T> title
The title of this step.


wizardModel

IWizardModel wizardModel
The wizard model.


Package org.apache.wicket.extensions.wizard.dynamic

Class org.apache.wicket.extensions.wizard.dynamic.DynamicWizardModel extends AbstractWizardModel implements Serializable

serialVersionUID: 1L

Serialized Fields

activeStep

IDynamicWizardStep activeStep
The current step. The only step that matters really,


startStep

IDynamicWizardStep startStep
Remember the first step for resetting the wizard.

Class org.apache.wicket.extensions.wizard.dynamic.DynamicWizardStep extends WizardStep implements Serializable

serialVersionUID: 1L

Serialized Fields

previousStep

IDynamicWizardStep previousStep

Package org.apache.wicket.extensions.yui

Class org.apache.wicket.extensions.yui.YuiLib extends Object implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.extensions.yui.calendar

Class org.apache.wicket.extensions.yui.calendar.AbstractCalendar extends WebComponent implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.extensions.yui.calendar.DateField extends FormComponentPanel<Date> implements Serializable

serialVersionUID: 1L

Serialized Fields

date

org.joda.time.MutableDateTime date

dateField

DateTextField dateField

Class org.apache.wicket.extensions.yui.calendar.DatePicker extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

component

Component component
The target component.


showOnFieldClick

boolean showOnFieldClick

Class org.apache.wicket.extensions.yui.calendar.DateTimeField extends FormComponentPanel<Date> implements Serializable

serialVersionUID: 1L

Serialized Fields

amOrPm

org.apache.wicket.extensions.yui.calendar.DateTimeField.AM_PM amOrPm

amOrPmChoice

DropDownChoice<T> amOrPmChoice

date

org.joda.time.MutableDateTime date

dateField

DateTextField dateField

hours

Integer hours

hoursField

TextField<T> hoursField

minutes

Integer minutes

minutesField

TextField<T> minutesField

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


Package org.apache.wicket.guice

Class org.apache.wicket.guice.GuiceComponentInjector.MoreThanOneBindingException extends Exception implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.guice.GuiceInjectorHolder extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

injector

com.google.inject.Injector injector

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

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


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

Locale locale
The resource locale.


filename

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

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

serialVersionUID: 1L

Serialized Fields

cache

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

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

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 ConcurrentHashMap<String,Boolean> implements Serializable

serialVersionUID: 1L

Serialized Fields

fifo

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(ObjectInputStream inputStream)
                 throws IOException,
                        ClassNotFoundException
AttributeModifiers must be Serialzable but WeakReferences are not. Hence, we need to implement our read/write methods to properly support it.

Throws:
IOException
ClassNotFoundException
See Also:
Serializable

writeObject

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

Throws:
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 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<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.CheckGroup extends FormComponent<Collection<T>> implements Serializable

serialVersionUID: 1L

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


formValidators

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

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


validators

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

serialVersionUID: 1L

Serialized Fields

error

IValidationError error
error object


message

String message
error message


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

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

serialVersionUID: 1L

Serialized Fields

settings

CookieValuePersisterSettings settings

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

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

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

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.DynamicImageResource extends DynamicWebResource 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.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

Resource resource
The image resource this image component references


resourceReference

ResourceReference resourceReference
The resource reference


resourceParameters

ValueMap resourceParameters
The resource parameters


locale

Locale locale
The locale of the image resource


style

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

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

Class org.apache.wicket.markup.html.internal.InlineEnclosure extends Enclosure 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

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.


pageMapName

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

fileName

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

List<E> shapeLinks
Deprecated. 
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

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

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


pageMapName

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

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

Serialized Fields

continueTo

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

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

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


dirtyItemsCreateDOM

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

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


previousModel

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

serialVersionUID: 1L

Serialized Fields

allowSelectMultiple

boolean allowSelectMultiple
Whether multiple selections can be done.


listeners

List<E> listeners
Tree state listeners.


nodes

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

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<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(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
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 Object implements Serializable

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

nestedComponents

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

serialVersionUID: 1L

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Class org.apache.wicket.markup.resolver.ScopedComponentResolver 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.WicketLinkResolver 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 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

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

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

serialVersionUID: 1L

Serialized Fields

target

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

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.BoundCompoundPropertyModel extends CompoundPropertyModel<T> implements Serializable

serialVersionUID: 1L

Serialized Fields

bindings

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

serialVersionUID: 1L

Serialized Fields

target

Object target

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

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

serialVersionUID: 1L

Serialized Fields

applicationKey

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


sessionId

String sessionId
Session id.


unbound

boolean unbound
Whether it is already unbound.

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.IgnoreAjaxRequestException extends RuntimeException implements Serializable

serialVersionUID: 1L

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

eventTarget

String eventTarget

responseTarget

String responseTarget

sessionId

String sessionId

totalSessionSize

long totalSessionSize

sessionInfo

Object sessionInfo

activeRequest

int activeRequest

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

serialVersionUID: 1L

Serialized Fields

attributes

ValueMap attributes

context

javax.servlet.ServletContext context

creationTime

long creationTime

id

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.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.SecondLevelCacheSessionStore.SecondLevelCachePageMap extends PageMap implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

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

applicationKey

String applicationKey

sessionId

String sessionId

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

serialVersionUID: 1L

Serialized Fields

pageId

int pageId

pageMapName

String pageMapName

versionNumber

int versionNumber

ajaxVersionNumber

int ajaxVersionNumber

data

byte[] data

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

serialVersionUID: 1L

Serialized Fields

pageMapName

String pageMapName

fileName

String fileName

manager

PageWindowManager manager

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

serialVersionUID: 1L

Serialized Fields

sessionId

String sessionId

pageMapEntryList

List<E> pageMapEntryList

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

serialVersionUID: 1L

Serialized Fields

windows

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

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

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
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.proxy

Package org.apache.wicket.request

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

componentPath

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


pageMapName

String pageMapName
any name of the page map.


versionNumber

int versionNumber
any version number; 0 for no version.


onlyProcessIfPathActive

boolean onlyProcessIfPathActive
FIXME javadoc


interfaceName

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


behaviorId

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

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


bookmarkablePageClass

String bookmarkablePageClass
any bookmarkable page class.


parameters

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


resourceKey

String resourceKey
any resource key.


path

String path
the path info.


urlDepth

int urlDepth
depth of the page for relative URLs.


queryString

String queryString
the request query string


stateless

boolean stateless
whether the url to the request with these parameters requires a session


Package org.apache.wicket.resource

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

serialVersionUID: 1L

Serialized Fields

contentType

String contentType
the content type.


array

byte[] array
binary data.


locale

Locale locale
the locale.


lastModified

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


filename

String filename

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

serialVersionUID: 1L

Serialized Fields

path

String path

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

serialVersionUID: 1L

Serialized Fields

locale

Locale locale
Deprecated. 
the locale.

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

serialVersionUID: 1L

Serialized Fields

textTemplate

TextTemplate textTemplate

variablesModel

IModel<T> variablesModel

Package org.apache.wicket.resource.aggregation

Class org.apache.wicket.resource.aggregation.ResourceReferenceCollection extends LinkedHashSet<ResourceReferenceAndStringData> implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.resource.dependencies

Class org.apache.wicket.resource.dependencies.AbstractResourceDependentResourceReference extends ResourceReference implements Serializable

serialVersionUID: 1L

Serialized Fields

uniqueId

String uniqueId

media

String media

Class org.apache.wicket.resource.dependencies.ResourceDependentResourceReference extends AbstractResourceDependentResourceReference implements Serializable

serialVersionUID: 1L

Serialized Fields

dependencies

AbstractResourceDependentResourceReference[] dependencies

Package org.apache.wicket.resource.filtering

Class org.apache.wicket.resource.filtering.HeaderResponseFilteredResponseContainer extends WebMarkupContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

filterName

String filterName

Package org.apache.wicket.session.pagemap

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

serialVersionUID: 1L

Serialized Fields

id

short id

Class org.apache.wicket.session.pagemap.LeastRecentlyAccessedEvictionStrategy extends 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.spring

Class org.apache.wicket.spring.SpringBeanLocator extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

beanTypeName

String beanTypeName

beanName

String beanName

springContextLocator

ISpringContextLocator springContextLocator

singletonCache

Boolean singletonCache

Package org.apache.wicket.spring.annot.web

Class org.apache.wicket.spring.annot.web.AnnotPage extends ContactsDisplayPage implements Serializable

Serialized Fields

dao

ContactDao dao

Class org.apache.wicket.spring.annot.web.ProxyDataProvider extends ContactDataProvider implements Serializable

Serialized Fields

dao

ContactDao dao

Class org.apache.wicket.spring.annot.web.ProxyModel extends ContactDetachableModel implements Serializable

Serialized Fields

dao

ContactDao dao

Package org.apache.wicket.spring.common

Class org.apache.wicket.spring.common.Contact extends Object implements Serializable

Serialized Fields

id

long id

firstName

String firstName

lastName

String lastName

homePhone

String homePhone

cellPhone

String cellPhone

Package org.apache.wicket.spring.common.web

Class org.apache.wicket.spring.common.web.BasePage extends WicketExamplePage implements Serializable

Class org.apache.wicket.spring.common.web.ContactDataProvider extends SortableDataProvider implements Serializable

Class org.apache.wicket.spring.common.web.ContactDetachableModel extends LoadableDetachableModel implements Serializable

Serialized Fields

id

long id

Class org.apache.wicket.spring.common.web.ContactsDisplayPage extends BasePage implements Serializable

Class org.apache.wicket.spring.common.web.HomePage extends BasePage implements Serializable


Package org.apache.wicket.spring.injection.annot.test

Class org.apache.wicket.spring.injection.annot.test.AnnotApplicationContextMock extends ApplicationContextMock implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.spring.test

Class org.apache.wicket.spring.test.ApplicationContextMock extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

beans

Map<K,V> beans

Class org.apache.wicket.spring.test.SpringContextLocatorMock extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

context

org.springframework.context.ApplicationContext context

Package org.apache.wicket.threadtest.apps.app1

Class org.apache.wicket.threadtest.apps.app1.Contact extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

cellPhone

String cellPhone

firstName

String firstName

homePhone

String homePhone

id

long id

lastName

String lastName

Class org.apache.wicket.threadtest.apps.app1.ContactDataProvider extends Object implements Serializable

serialVersionUID: 1L

Class org.apache.wicket.threadtest.apps.app1.DetachableContactModel extends LoadableDetachableModel<Contact> implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

Class org.apache.wicket.threadtest.apps.app1.FormInputModel extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

booleanProperty

Boolean booleanProperty

dateProperty

Date dateProperty

doubleProperty

Double doubleProperty

integerInRangeProperty

Integer integerInRangeProperty

integerProperty

Integer integerProperty

lines

List<E> lines

numberRadioChoice

String numberRadioChoice

numbersCheckGroup

List<E> numbersCheckGroup

numbersGroup

String numbersGroup

phoneNumberUS

UsPhoneNumber phoneNumberUS
US phone number with mask '(###) ###-####'.


siteSelection

Set<E> siteSelection

stringProperty

String stringProperty

urlProperty

URL urlProperty

Class org.apache.wicket.threadtest.apps.app1.FormInputModel.Line extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

text

String text

Class org.apache.wicket.threadtest.apps.app1.Home extends WebPage implements Serializable

Serialized Fields

selected

Contact selected

Class org.apache.wicket.threadtest.apps.app1.ResourceTestPage extends WebPage implements Serializable

Class org.apache.wicket.threadtest.apps.app1.UsPhoneNumber extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

number

String number

Package org.apache.wicket.threadtest.apps.app2

Class org.apache.wicket.threadtest.apps.app2.Home extends WebPage implements Serializable


Package org.apache.wicket.util.collections

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialization Methods

readObject

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

Throws:
ClassNotFoundException
IOException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException

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

serialVersionUID: 362498820763181265L

Serialization Methods

readObject

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

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws 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:
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 Object implements Serializable

serialVersionUID: 1L

Serialized Fields

key

Object key
The one and only key in this tiny map


value

Object value
The value for the only key in this tiny map

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

serialVersionUID: 1L

Serialized Fields

keys

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


values

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.MostRecentlyUsedMap extends LinkedHashMap<K,V> implements Serializable

serialVersionUID: 1L

Serialized Fields

removedValue

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

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

serialVersionUID: 1L

Serialized Fields

classToConverter

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

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

serialVersionUID: 1L

Serialized Fields

maskFormatter

MaskFormatter maskFormatter
Object that knows all about masks.


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

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

numberFormats

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

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

serialVersionUID: 1L

Serialized Fields

list

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 Object readResolve()
                   throws ObjectStreamException
Method to ensure that == works after deserialization

Throws:
ObjectStreamException

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

serialVersionUID: 1L

Serialized Fields

name

String name

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

serialVersionUID: 1L

Serialized Fields

converterSupplier

IConverterLocator converterSupplier

locale

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

serialVersionUID: 1L

Class org.apache.wicket.util.parse.metapattern.GroupNotBoundException extends 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 Object implements Serializable

serialVersionUID: 1L

Serialized Fields

pattern

Pattern pattern
Compiled regular expression pattern, or null if patterns variable is valid instead


patterns

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


compiledPattern

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

serialVersionUID: 1L

Serialized Fields

charset

Charset charset
Charset for resource


locale

Locale locale

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

serialVersionUID: 1L

Serialized Fields

locale

Locale locale

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

serialVersionUID: 1L

Serialized Fields

contentType

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

CharSequence string
The string resource

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

serialVersionUID: 1L

Serialized Fields

url

URL url
The URL to this resource.


file

File file
the handle to the file if it is a file resource


contentLength

int contentLength
Length of stream.


contentType

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

InputStream in

url

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

ByteArrayOutputStream out

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

serialVersionUID: 1L

Serialized Fields

bytearray

ByteArrayOutputStream bytearray

Package org.apache.wicket.util.string

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialization Methods

readObject

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

Throws:
ClassNotFoundException
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

List<E> strings

totalLength

int totalLength

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

serialVersionUID: 1L

Serialized Fields

locale

Locale locale
Locale to be used for formatting and parsing.


text

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

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

serialVersionUID: 1L

Serialized Fields

sources

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

serialVersionUID: 2237570099615271025L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Reads the state of this object during deserialization.

Throws:
IOException - if an error occurs.
ClassNotFoundException - if class cannot be found.

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Writes the state of this object during serialization.

Throws:
IOException - if an error occurs.
Serialized Fields

fieldName

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


contentType

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

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


size

long size
The size of the item, in bytes. This is used to cache the size when a file item is moved from its original location.


sizeThreshold

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


repository

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


cachedContent

byte[] cachedContent
Cached contents of the file.


dfosFile

File dfosFile
File to allow for serialization of the content of this item.


headers

FileItemHeaders headers
The file items headers.

Class org.apache.wicket.util.upload.FileItemHeadersImpl extends Object implements Serializable

serialVersionUID: -4455695752627032559L

Serialized Fields

headerNameToValueListMap

Map<K,V> headerNameToValueListMap
Map of String keys to a List of String instances.


headerNameList

List<E> headerNameList
List to preserve order of headers as added. This would not be needed if a LinkedHashMap could be used, but don't want to depend on 1.4.

Class org.apache.wicket.util.upload.FileItemStream.ItemSkippedException extends IOException implements Serializable

serialVersionUID: -7280778431581963740L

Class org.apache.wicket.util.upload.FileUploadBase.FileSizeLimitExceededException extends FileUploadBase.SizeException implements Serializable

serialVersionUID: 8150776562029630058L

Class org.apache.wicket.util.upload.FileUploadBase.FileUploadIOException extends IOException implements Serializable

serialVersionUID: -7047616958165584154L

Serialized Fields

cause

FileUploadException cause
The exceptions cause; we overwrite the parent classes field, which is available since Java 1.4 only.

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

serialVersionUID: -9073026332015646668L

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

serialVersionUID: 1749796615868477269L

Serialized Fields

cause

IOException cause
The exceptions cause; we overwrite the parent classes field, which is available since Java 1.4 only.

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

Serialized Fields

actual

long actual
The actual size of the request.


permitted

long permitted
The maximum permitted size of the request.

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

serialVersionUID: -2474893167098052828L

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

serialVersionUID: 7062279004812015273L

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

serialVersionUID: 8881893724388807504L

Serialized Fields

cause

Throwable cause
The exceptions cause. We overwrite the cause of the super class, which isn't available in Java 1.3.

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

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


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

serialVersionUID: 1L

Serialized Fields

wrapped

IValueMap wrapped
the wrapped IValueMap

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

serialVersionUID: 1L

Serialized Fields

count

int count
the count

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

serialVersionUID: 1L

Serialized Fields

value

int value
the int value

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

serialVersionUID: 1L

Serialized Fields

value

long value
the long value

Class org.apache.wicket.util.value.ValueMap extends LinkedHashMap<String,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 Object implements Serializable

serialVersionUID: 1L

Serialized Fields

validators

List<E> validators

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


Package org.apache.wicket.validation.validator

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

serialVersionUID: 1L

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

serialVersionUID: 1L

Serialized Fields

creditCardNumber

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

serialVersionUID: 1L

Serialized Fields

maximum

Comparable<T> maximum

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

serialVersionUID: 1L

Serialized Fields

minimum

Comparable<T> minimum

Class org.apache.wicket.validation.validator.NumberValidator extends AbstractValidator<T extends 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

Pattern pattern
the java.util.regex.Pattern


reverse

boolean reverse
whether to exclude matching input

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

serialVersionUID: 1L

Serialized Fields

minimum

Comparable<T> minimum

maximum

Comparable<T> maximum

Class org.apache.wicket.validation.validator.StringValidator extends AbstractValidator<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<String> 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.


Package org.apache.wicket.velocity

Class org.apache.wicket.velocity.VelocityContributor extends AbstractBehavior implements Serializable

serialVersionUID: 1L

Serialized Fields

encoding

String encoding

model

IModel<T> model

templateName

String templateName

Class org.apache.wicket.velocity.VelocityHeaderContributor extends AbstractHeaderContributor implements Serializable

serialVersionUID: 1L

Serialized Fields

contributors

List<E> contributors

Class org.apache.wicket.velocity.VelocityJavascriptContributor extends VelocityContributor implements Serializable

serialVersionUID: 1L

Serialized Fields

id

String id

Package org.apache.wicket.velocity.markup.html

Class org.apache.wicket.velocity.markup.html.VelocityPanel extends Panel implements Serializable

serialVersionUID: 1L


Package org.apache.wicket.version

Package org.apache.wicket.version.undo

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

serialVersionUID: 1L

Class org.apache.wicket.version.undo.UndoPageVersionManager extends 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-2011 Apache Software Foundation. All Rights Reserved.