Uses of Interface
org.apache.wicket.markup.resolver.IComponentResolver

Packages that use IComponentResolver
org.apache.wicket.examples.library   
org.apache.wicket.examples.navomatic   
org.apache.wicket.examples.template.border   
org.apache.wicket.extensions.ajax.markup.html.repeater.data.sort   
org.apache.wicket.extensions.markup.html.repeater.data.sort   
org.apache.wicket.markup.html Base package of HTML markup. 
org.apache.wicket.markup.html.border Border components. 
org.apache.wicket.markup.html.form HTML Forms and form components. 
org.apache.wicket.markup.html.form.validation Support for form validation. 
org.apache.wicket.markup.parser.filter Default parsing extensions. 
org.apache.wicket.markup.resolver Resolvers implement the IComponentResolver interface and must be registered with the application. 
org.apache.wicket.settings   
 

Uses of IComponentResolver in org.apache.wicket.examples.library
 

Classes in org.apache.wicket.examples.library that implement IComponentResolver
 class LibraryApplicationBorder
          Border component.
 

Uses of IComponentResolver in org.apache.wicket.examples.navomatic
 

Classes in org.apache.wicket.examples.navomatic that implement IComponentResolver
 class NavomaticBorder
          Border component.
 

Uses of IComponentResolver in org.apache.wicket.examples.template.border
 

Classes in org.apache.wicket.examples.template.border that implement IComponentResolver
 class TemplateBorder
          Border that holds layout elements that can be reused by pages.
 

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

Classes in org.apache.wicket.extensions.ajax.markup.html.repeater.data.sort that implement IComponentResolver
 class AjaxFallbackOrderByBorder
          Ajaxified version of OrderByBorder
 

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

Classes in org.apache.wicket.extensions.markup.html.repeater.data.sort that implement IComponentResolver
 class OrderByBorder
          A component that wraps markup with an OrderByLink.
 

Uses of IComponentResolver in org.apache.wicket.markup.html
 

Classes in org.apache.wicket.markup.html that implement IComponentResolver
 class HeaderPartContainer
          For each wicket:head tag a HeaderPartContainer is created and added to the HtmlHeaderContainer which has been added to the Page.
 

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

Classes in org.apache.wicket.markup.html.border that implement IComponentResolver
 class Border
          A border component has associated markup which is drawn and determines placement of any markup and/or components nested within the border component.
 class Border.BorderBodyContainer
          The container to be associated with the <wicket:body> tag
 class BoxBorder
          A very simple border component that draws a thin black line around its children.
 

Uses of IComponentResolver in org.apache.wicket.markup.html.form
 

Classes in org.apache.wicket.markup.html.form that implement IComponentResolver
 class AutoLabelResolver
          Resolver that implements the wicket:for attribute functionality.
 class AutoLabelTextResolver
          Resolver that provides the <wicket:label> tag, which will output a FormComponent's label without requiring a manual extra component such as Label or FormComponentLabel.
 

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

Classes in org.apache.wicket.markup.html.form.validation that implement IComponentResolver
 class FormComponentFeedbackBorder
          A border that can be placed around a form component to indicate when the bordered child/children has a validation error.
 

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

Classes in org.apache.wicket.markup.parser.filter that implement IComponentResolver
 class RelativePathPrefixHandler
          The purpose of this filter is to make all "href", "src" and "background" attributes found in the markup which contain a relative URL like "myDir/myPage.gif" actually resolve in the output HTML, by prefixing them with with an appropriate path to make the link work properly, even if the current page is being displayed at a mounted URL or whatever.
 class WicketMessageTagHandler
          This is a markup inline filter and a component resolver.
 

Uses of IComponentResolver in org.apache.wicket.markup.resolver
 

Classes in org.apache.wicket.markup.resolver that implement IComponentResolver
 class AutoComponentResolver
          <wicket:component class="myApp.MyTable" key=value> tags may be used to add Wicket components (e.g.
 class AutoLinkResolver
          The AutoLinkResolver is responsible to handle automatic link resolution.
 class BorderBodyResolver
          In case of Border where the associated markup has a container in between the wicket:border and the wicket:body tag, the wicket:body container can not be resolved easily.
 class EnclosureResolver
          This is a tag resolver which automatically adds a Enclosure container for each <wicket:enclosure> tag.
 class FragmentResolver
          Usually you either have a markup file or a xml tag with wicket:id="myComponent" to associate markup with a component.
 class HtmlHeaderResolver
          This is a tag resolver which handles <head> and <wicket:head>tags.
 class MarkupInheritanceResolver
          Detect <wicket:extend> and <wicket:child> tags, which are silently ignored, because they have already been processed.
 class ParentResolver
          Some containers are transparent to the user (e.g.
 class ScopedComponentResolver
          Implement a component resolver which walks up the component tree until a Page or Panel and tries to find a component with a matching wicket id, effectively providing something like scoping for wicket id resolution.
 class WicketContainerResolver
          This is a tag resolver which handles <wicket:container> Sometimes adding components in certain ways may lead to output of invalid markup.
 class WicketLinkResolver
          This is a tag resolver which handles <wicket:link> tags.
 class WicketMessageResolver
          This is a tag resolver which handles <wicket:message key="myKey">Default Text</wicket:message>.
 

Uses of IComponentResolver in org.apache.wicket.settings
 

Methods in org.apache.wicket.settings that return types with arguments of type IComponentResolver
 List<IComponentResolver> Settings.getComponentResolvers()
          Get the (modifiable) list of IComponentResolvers.
 List<IComponentResolver> IPageSettings.getComponentResolvers()
          Get the (modifiable) list of IComponentResolvers.
 

Methods in org.apache.wicket.settings with parameters of type IComponentResolver
 void Settings.addComponentResolver(IComponentResolver resolver)
           
 void IPageSettings.addComponentResolver(IComponentResolver resolver)
          Adds a component resolver to the list.
 



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