Uses of Interface
org.apache.wicket.markup.resolver.IComponentResolver
-
Packages that use IComponentResolver Package Description 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.html.internal org.apache.wicket.markup.parser.filter Default parsing extensions.org.apache.wicket.markup.resolver Resolvers implement theIComponentResolverinterface and must be registered with the application.org.apache.wicket.settings -
-
Uses of IComponentResolver in org.apache.wicket.markup.html
Classes in org.apache.wicket.markup.html that implement IComponentResolver Modifier and Type Class Description classHeaderPartContainerFor each wicket:head tag a HeaderPartContainer is created and added to the HtmlHeaderContainer which has been added to the Page.classTransparentWebMarkupContainerA simple "transparent" markup container. -
Uses of IComponentResolver in org.apache.wicket.markup.html.border
Classes in org.apache.wicket.markup.html.border that implement IComponentResolver Modifier and Type Class Description classBorderA border component has associated markup which is drawn and determines placement of markup and/or components nested within the border component. -
Uses of IComponentResolver in org.apache.wicket.markup.html.form
Classes in org.apache.wicket.markup.html.form that implement IComponentResolver Modifier and Type Class Description classAutoLabelResolverResolver that implements thewicket:forattribute functionality.protected static classAutoLabelResolver.AutoLabelComponent that is attached to the<label>tag and takes care of writing out the label text as well as setting classes on the<label>tagclassAutoLabelTextResolverResolver that provides the<wicket:label>tag, which will output a FormComponent'slabelwithout requiring a manual extra component such asLabelorFormComponentLabel. -
Uses of IComponentResolver in org.apache.wicket.markup.html.form.validation
Classes in org.apache.wicket.markup.html.form.validation that implement IComponentResolver Modifier and Type Class Description classFormComponentFeedbackBorderA 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.html.internal
Classes in org.apache.wicket.markup.html.internal that implement IComponentResolver Modifier and Type Class Description classEnclosureAn Enclosure are automatically created by Wicket.classHtmlHeaderContainerThe HtmlHeaderContainer is automatically created and added to the component hierarchy by a HtmlHeaderResolver instance.classHtmlHeaderItemsContainerA specialization of HtmlHeaderContainer that doesn't render <head> and &l;/head> around the header contributions.classInlineEnclosureAn InlineEnclosure are automatically created by Wicket. -
Uses of IComponentResolver in org.apache.wicket.markup.parser.filter
Classes in org.apache.wicket.markup.parser.filter that implement IComponentResolver Modifier and Type Class Description classEnclosureHandlerThis is a markup inline filter.classInlineEnclosureHandlerThis is a markup inline filter.classRelativePathPrefixHandlerThe 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.classWicketLinkTagHandlerThis is a markup inline filter.classWicketMessageTagHandlerThis 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 Modifier and Type Class Description classAutoLinkResolverThe AutoLinkResolver is responsible to handle automatic link resolution.static classAutoLinkResolver.AutolinkBookmarkablePageLink<T>Autolink components delegate component resolution to their parent components.classHtmlHeaderResolverThis is a tag resolver which handles <head> and <wicket:head>tags.classWicketContainerResolverThis is a tag resolver which handles <wicket:container> Sometimes adding components in certain ways may lead to output of invalid markup.classWicketMessageResolverThis is a tag resolver which handles <wicket:message key="myKey">Default Text</wicket:message>.Methods in org.apache.wicket.markup.resolver with parameters of type IComponentResolver Modifier and Type Method Description booleanComponentResolvers.ResolverFilter. ignoreResolver(IComponentResolver resolver) -
Uses of IComponentResolver in org.apache.wicket.settings
Methods in org.apache.wicket.settings that return types with arguments of type IComponentResolver Modifier and Type Method Description java.util.List<IComponentResolver>PageSettings. getComponentResolvers()Get the (modifiable) list of IComponentResolvers.Methods in org.apache.wicket.settings with parameters of type IComponentResolver Modifier and Type Method Description PageSettingsPageSettings. addComponentResolver(IComponentResolver resolver)Adds a component resolver to the list.
-