Uses of Class
org.apache.wicket.behavior.Behavior

Packages that use Behavior
org.apache.wicket The core Wicket package. 
org.apache.wicket.ajax   
org.apache.wicket.ajax.form   
org.apache.wicket.ajax.markup.html.navigation.paging   
org.apache.wicket.behavior   
org.apache.wicket.examples.forminput   
org.apache.wicket.extensions.ajax.markup.html   
org.apache.wicket.extensions.ajax.markup.html.autocomplete   
org.apache.wicket.extensions.ajax.markup.html.modal   
org.apache.wicket.extensions.markup.html.repeater.data.sort   
org.apache.wicket.extensions.validation.validator   
org.apache.wicket.extensions.yui.calendar   
org.apache.wicket.markup Base package for markup. 
org.apache.wicket.markup.html.border Border components. 
org.apache.wicket.markup.html.form.validation Support for form validation. 
org.apache.wicket.markup.html.image Image components. 
org.apache.wicket.markup.parser.filter Default parsing extensions. 
org.apache.wicket.markup.transformer Transformers are able to post-process (transform) the output generated by a Component. 
org.apache.wicket.request.component   
org.apache.wicket.request.handler   
org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. 
org.apache.wicket.validation This package provides interfaces for Wicket's validation support. 
org.apache.wicket.validation.validator This package provides an implementation of Wicket's validation support. 
org.apache.wicket.velocity   
 

Uses of Behavior in org.apache.wicket
 

Subclasses of Behavior in org.apache.wicket
 class AttributeModifier
          This class allows a tag attribute of a component to be modified dynamically with a value obtained from a model object.
 

Methods in org.apache.wicket with type parameters of type Behavior
<M extends Behavior>
java.util.List<M>
Component.getBehaviors(java.lang.Class<M> type)
          Gets the subset of the currently coupled Behaviors that are of the provided type as a unmodifiable list.
 

Methods in org.apache.wicket that return Behavior
 Behavior Component.getBehaviorById(int id)
          Gets the behavior for the specified id
 

Methods in org.apache.wicket that return types with arguments of type Behavior
 java.util.List<? extends Behavior> Component.getBehaviors()
          Gets the currently coupled Behaviors as a unmodifiable list.
 

Methods in org.apache.wicket with parameters of type Behavior
 Component Component.add(Behavior... behaviors)
          Adds a behavior modifier to the component.
 int Component.getBehaviorId(Behavior behavior)
          Gets a stable id for the specified behavior.
 void RequestListenerInterface.invoke(IRequestableComponent rcomponent, Behavior behavior)
          Invokes a given interface on a component's behavior.
protected  boolean Component.isBehaviorAccepted(Behavior behavior)
          Components are allowed to reject behavior modifiers.
 Component Component.remove(Behavior... behaviors)
          Removes behavior from component
 java.lang.CharSequence Component.urlFor(Behavior behaviour, RequestListenerInterface listener)
          Gets a URL for the listener interface on a behavior (e.g.
 

Uses of Behavior in org.apache.wicket.ajax
 

Subclasses of Behavior in org.apache.wicket.ajax
 class AbstractAjaxTimerBehavior
          A behavior that generates an AJAX update callback at a regular interval.
 class AbstractDefaultAjaxBehavior
          The base class for Wicket's default AJAX implementation.
 class AjaxEventBehavior
          An ajax behavior that is attached to a certain client-side (usually javascript) event, such as onClick, onChange, onKeyDown, etc.
 class AjaxSelfUpdatingTimerBehavior
          Automatically re-renders the component it is attached to via AJAX at a regular interval.
 

Uses of Behavior in org.apache.wicket.ajax.form
 

Subclasses of Behavior in org.apache.wicket.ajax.form
 class AjaxFormChoiceComponentUpdatingBehavior
          This is a Ajax Component Update Behavior that is meant for choices/groups that are not one component in the html but many.
 class AjaxFormComponentUpdatingBehavior
          A behavior that updates the hosting FormComponent via ajax when an event it is attached to is triggered.
 class AjaxFormSubmitBehavior
          Ajax event behavior that submits a form via ajax when the event it is attached to, is invoked.
 class AjaxFormValidatingBehavior
          Ajax event behavior that submits the form and updates all form feedback panels on the page.
 class OnChangeAjaxBehavior
          A behavior that updates the hosting FormComponent via ajax when value of the component is changed.
 

Uses of Behavior in org.apache.wicket.ajax.markup.html.navigation.paging
 

Subclasses of Behavior in org.apache.wicket.ajax.markup.html.navigation.paging
 class AjaxPagingNavigationBehavior
          Ajax behavior for the paging navigation links.
 

Uses of Behavior in org.apache.wicket.behavior
 

Subclasses of Behavior in org.apache.wicket.behavior
 class AbstractAjaxBehavior
          Abstract class for handling Ajax roundtrips.
 class AbstractBehavior
          Deprecated. extend Behavior instead
 class AttributeAppender
          AttributeModifier that appends the given value, rather than replace it.
 class SimpleAttributeModifier
          Deprecated. use AttributeModifier.replace(String, java.io.Serializable) instead
 

Uses of Behavior in org.apache.wicket.examples.forminput
 

Subclasses of Behavior in org.apache.wicket.examples.forminput
 class BeforeAndAfterBorder
          Simple example to show how a border works.
 

Uses of Behavior in org.apache.wicket.extensions.ajax.markup.html
 

Subclasses of Behavior in org.apache.wicket.extensions.ajax.markup.html
protected  class AjaxEditableLabel.EditorAjaxBehavior
           
protected  class AjaxEditableLabel.LabelAjaxBehavior
           
 class AjaxIndicatorAppender
          A behavior that adds a span with wicket's default indicator gif to the end of the component's markup.
 class WicketAjaxIndicatorAppender
          Deprecated. Use AjaxIndicatorAppender instead.
 

Uses of Behavior in org.apache.wicket.extensions.ajax.markup.html.autocomplete
 

Subclasses of Behavior in org.apache.wicket.extensions.ajax.markup.html.autocomplete
 class AbstractAutoCompleteBehavior
           
 class AutoCompleteBehavior<T>
          This behavior builds on top of AbstractAutoCompleteBehavior by introducing the concept of a IAutoCompleteRenderer to make response writing easier.
 

Uses of Behavior in org.apache.wicket.extensions.ajax.markup.html.modal
 

Subclasses of Behavior in org.apache.wicket.extensions.ajax.markup.html.modal
protected  class ModalWindow.CloseButtonBehavior
           
 

Uses of Behavior in org.apache.wicket.extensions.markup.html.repeater.data.sort
 

Subclasses of Behavior in org.apache.wicket.extensions.markup.html.repeater.data.sort
static class OrderByLink.CssModifier
          Uses the specified ICssProvider to add css class attributes to the link.
 

Uses of Behavior in org.apache.wicket.extensions.validation.validator
 

Subclasses of Behavior in org.apache.wicket.extensions.validation.validator
 class RfcCompliantEmailAddressValidator
          Validator for validating email addresses according to the RFC 822.
 

Uses of Behavior in org.apache.wicket.extensions.yui.calendar
 

Subclasses of Behavior in org.apache.wicket.extensions.yui.calendar
 class DatePicker
          Pops up a YUI calendar component so that the user can select a date.
 

Uses of Behavior in org.apache.wicket.markup
 

Methods in org.apache.wicket.markup that return types with arguments of type Behavior
 java.util.Iterator<? extends Behavior> ComponentTag.getBehaviors()
           
 

Methods in org.apache.wicket.markup with parameters of type Behavior
 void ComponentTag.addBehavior(Behavior behavior)
          Adds a behavior to this component tag.
 

Uses of Behavior in org.apache.wicket.markup.html.border
 

Subclasses of Behavior in org.apache.wicket.markup.html.border
 class BorderBehavior
          This is a behavior implementation that can be used if you have markup that should be around a component.
 class MarkupComponentBorder
          Deprecated. Please use BorderBehavior instead.
 

Uses of Behavior in org.apache.wicket.markup.html.form.validation
 

Subclasses of Behavior in org.apache.wicket.markup.html.form.validation
 class AbstractFormValidator
          Base class for IFormValidators.
 class EqualInputValidator
          Validates that the input of two form components is identical.
 class EqualPasswordInputValidator
          Validates that the input of two form components is identical.
 class FormValidatorAdapter
          Adapts IFormValidator to Behavior
 

Uses of Behavior in org.apache.wicket.markup.html.image
 

Subclasses of Behavior in org.apache.wicket.markup.html.image
 class ContextPathGenerator
          A behavior that converts the provider url fragment to a context-relative url.
 

Uses of Behavior in org.apache.wicket.markup.parser.filter
 

Subclasses of Behavior in org.apache.wicket.markup.parser.filter
static class WicketMessageTagHandler.AttributeLocalizer
          Attribute localizing behavior.
 

Fields in org.apache.wicket.markup.parser.filter declared as Behavior
static Behavior WicketMessageTagHandler.ATTRIBUTE_LOCALIZER
          singleton instance of WicketMessageTagHandler.AttributeLocalizer
static Behavior RelativePathPrefixHandler.RELATIVE_PATH_BEHAVIOR
          Behavior that adds a prefix to src, href and background attributes to make them context-relative
 

Uses of Behavior in org.apache.wicket.markup.transformer
 

Subclasses of Behavior in org.apache.wicket.markup.transformer
 class AbstractTransformerBehavior
          A IBehavior which can be added to any component.
 class XsltTransformerBehavior
          An IBehavior which can be added to any component except ListView.
 

Uses of Behavior in org.apache.wicket.request.component
 

Methods in org.apache.wicket.request.component that return Behavior
 Behavior IRequestableComponent.getBehaviorById(int id)
          Gets the behavior for the specified id
 

Methods in org.apache.wicket.request.component with parameters of type Behavior
 int IRequestableComponent.getBehaviorId(Behavior behavior)
          Gets a stable id for the specified behavior.
 

Uses of Behavior in org.apache.wicket.request.handler
 

Methods in org.apache.wicket.request.handler that return Behavior
 Behavior ListenerInvocationNotAllowedException.getBehavior()
           
 

Constructors in org.apache.wicket.request.handler with parameters of type Behavior
ListenerInvocationNotAllowedException(RequestListenerInterface iface, Component component, Behavior behavior, java.lang.String message)
          Constructor
 

Uses of Behavior in org.apache.wicket.util.tester
 

Methods in org.apache.wicket.util.tester that return Behavior
static Behavior WicketTesterHelper.findBehavior(Component component, java.lang.Class<? extends Behavior> behaviorClass)
           
 

Method parameters in org.apache.wicket.util.tester with type arguments of type Behavior
static Behavior WicketTesterHelper.findBehavior(Component component, java.lang.Class<? extends Behavior> behaviorClass)
           
 

Uses of Behavior in org.apache.wicket.validation
 

Subclasses of Behavior in org.apache.wicket.validation
 class CompoundValidator<T>
          A compound IValidator.
 class ValidatorAdapter<T>
          Adapts IValidator to Behavior
 

Uses of Behavior in org.apache.wicket.validation.validator
 

Subclasses of Behavior in org.apache.wicket.validation.validator
 class AbstractValidator<T>
          Convenience base class for IValidators.
 class CreditCardValidator
          Checks if a credit card number is valid.
 class DateValidator
          Validator for checking dates.
 class EmailAddressValidator
          Validator for checking the form/pattern of email addresses.
 class MaximumValidator<Z extends Comparable<Z> & Serializable>
          Validator for checking that the value is not greater then a specified maximum value
 class MinimumValidator<Z extends Comparable<Z> & Serializable>
          Validator for checking that the value is not smaller then a specified minimum value
 class PatternValidator
          Validates a Component by matching the component's value against a regular expression pattern.
 class RangeValidator<Z extends Comparable<Z> & Serializable>
          Validator for checking if a given value falls within [min,max] range.
 class StringValidator
          Validator for checking String lengths.
static class StringValidator.ExactLengthValidator
          Validator for checking if the length of a String is exactly the specified length.
static class StringValidator.LengthBetweenValidator
          Validator for checking if the length of a String is within the specified range.
static class StringValidator.MaximumLengthValidator
          Validator for checking if the length of a String meets the maximum length requirement.
static class StringValidator.MinimumLengthValidator
          Validator for checking if the length of a String meets the minimum length requirement.
 class UrlValidator
          Validator for checking URLs.
 

Uses of Behavior in org.apache.wicket.velocity
 

Subclasses of Behavior in org.apache.wicket.velocity
 class VelocityContributor
          An IHeaderContributor implementation that renders a velocity template and writes it to the response.
 class VelocityJavaScriptContributor
          A derivation of VelocityContributor that uses IHeaderResponse.renderJavaScript(CharSequence, String)
 



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