Uses of Interface
org.apache.wicket.markup.parser.IMarkupFilter

Packages that use IMarkupFilter
org.apache.wicket.markup Base package for markup. 
org.apache.wicket.markup.html.form HTML Forms and form components. 
org.apache.wicket.markup.parser The default parsing engine of Wicket. 
org.apache.wicket.markup.parser.filter Default parsing extensions. 
 

Uses of IMarkupFilter in org.apache.wicket.markup
 

Methods in org.apache.wicket.markup with parameters of type IMarkupFilter
 void MarkupParser.appendMarkupFilter(IMarkupFilter filter)
          Append a new filter to the list of already pre-configured markup filters.
 void MarkupParser.appendMarkupFilter(IMarkupFilter filter, Class<? extends IMarkupFilter> beforeFilter)
          Append a new filter to the list of already pre-configured markup filters.
 

Method parameters in org.apache.wicket.markup with type arguments of type IMarkupFilter
 void MarkupParser.appendMarkupFilter(IMarkupFilter filter, Class<? extends IMarkupFilter> beforeFilter)
          Append a new filter to the list of already pre-configured markup filters.
 

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

Classes in org.apache.wicket.markup.html.form that implement IMarkupFilter
 class AutoLabelTagHandler
          Markup filter that identifies tags with the wicket:for attribute.
 

Uses of IMarkupFilter in org.apache.wicket.markup.parser
 

Subinterfaces of IMarkupFilter in org.apache.wicket.markup.parser
 interface IXmlPullParser
          The interface of a streaming XML parser as required by Wicket.
 

Classes in org.apache.wicket.markup.parser that implement IMarkupFilter
 class AbstractMarkupFilter
          Base class for markup filters
 class XmlPullParser
          A fairly shallow markup pull parser which parses a markup string of a given type of markup (for example, html, xml, vxml or wml) into ComponentTag and RawMarkup tokens.
 

Methods in org.apache.wicket.markup.parser that return IMarkupFilter
 IMarkupFilter IMarkupFilter.getParent()
          IMarkupFilters are usually chained with the last filter being an XML parser.
 IMarkupFilter AbstractMarkupFilter.getParent()
           
 

Methods in org.apache.wicket.markup.parser with parameters of type IMarkupFilter
 void IMarkupFilter.setParent(IMarkupFilter parent)
          Set parent filter.
 void AbstractMarkupFilter.setParent(IMarkupFilter parent)
          Set new parent.
 

Constructors in org.apache.wicket.markup.parser with parameters of type IMarkupFilter
AbstractMarkupFilter(IMarkupFilter parent)
          Construct.
 

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

Classes in org.apache.wicket.markup.parser.filter that implement IMarkupFilter
 class EnclosureHandler
          This is a markup inline filter.
 class ExtendedOpenCloseTagExpander
          MarkupFilter that expands all xhtml tag which are open-close in the markup but where the standard requires it to have a body.
 class HeadForceTagIdHandler
          Handler that sets unique tag id for every inline script and style element in <wicket:head>, unless the element already has one.
 class HtmlHandler
          This is a markup inline filter.
 class HtmlHeaderSectionHandler
          This is a markup inline filter.
 class HtmlProblemFinder
          This is a markup inline filter which by default is not added to the list of markup filter.
 class InlineEnclosureHandler
          This is a markup inline filter.
 class OpenCloseTagExpander
          MarkupFilter that expands certain open-close tag as separate open and close tags.
 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 WicketLinkTagHandler
          This is a markup inline filter.
 class WicketMessageTagHandler
          This is a markup inline filter and a component resolver.
 class WicketNamespaceHandler
          This is a markup inline filter.
 class WicketRemoveTagHandler
          This is a markup inline filter.
 class WicketTagIdentifier
          This is a markup inline filter.
 



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