Uses of Interface
org.apache.wicket.markup.IMarkupFragment

Packages that use IMarkupFragment
org.apache.wicket The core Wicket package. 
org.apache.wicket.markup Base package for markup. 
org.apache.wicket.markup.html Base package of HTML markup. 
org.apache.wicket.markup.html.border Border components. 
org.apache.wicket.markup.html.internal   
org.apache.wicket.markup.html.list List components for tabular data and such. 
org.apache.wicket.markup.html.panel Panel components. 
org.apache.wicket.markup.repeater   
org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. 
 

Uses of IMarkupFragment in org.apache.wicket
 

Methods in org.apache.wicket that return IMarkupFragment
 IMarkupFragment Component.getMarkup()
          Get the Markup associated with the Component.
 IMarkupFragment MarkupContainer.getMarkup(Component child)
          Get the childs markup
 

Methods in org.apache.wicket with parameters of type IMarkupFragment
 void Component.setMarkup(IMarkupFragment markup)
          Set the markup for the component.
 

Uses of IMarkupFragment in org.apache.wicket.markup
 

Classes in org.apache.wicket.markup that implement IMarkupFragment
 class Markup
          The content of a markup file, consisting of a list of markup elements.
 class MarkupFragment
          Represents a portion of a markup file, but always spans a complete tag.
 class MergedMarkup
          A Markup class which represents merged markup, as it is required for markup inheritance.
 

Methods in org.apache.wicket.markup that return IMarkupFragment
 IMarkupFragment IMarkupFragment.find(String id)
          Find the markup fragment of the component with 'path'
 IMarkupFragment Markup.find(String id)
           
 IMarkupFragment MarkupFragment.find(String id)
           
 IMarkupFragment MarkupStream.getMarkupFragment()
           
 IMarkupFragment IMarkupCache.removeMarkup(String cacheKey)
          Remove the markup associated with the cache key from the cache including all dependent markups (markup inheritance)
 IMarkupFragment MarkupCache.removeMarkup(String cacheKey)
          Note that this method will be called from a "cleanup" thread which might not have a thread local application.
 

Methods in org.apache.wicket.markup with parameters of type IMarkupFragment
static boolean TagUtils.isExtendTag(IMarkupFragment markup, int i)
           
static boolean TagUtils.isWicketTag(IMarkupFragment markup, int i)
           
 

Constructors in org.apache.wicket.markup with parameters of type IMarkupFragment
MarkupFragment(IMarkupFragment markup, int startIndex)
          Construct.
MarkupIterator(IMarkupFragment markup)
          Construct.
MarkupStream(IMarkupFragment markup)
          Constructor
 

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

Constructors in org.apache.wicket.markup.html with parameters of type IMarkupFragment
HeaderPartContainer(String id, MarkupContainer container, IMarkupFragment markup)
           
 

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

Methods in org.apache.wicket.markup.html.border that return IMarkupFragment
 IMarkupFragment Body.getMarkup()
           
 IMarkupFragment Border.BorderBodyContainer.getMarkup()
          Get the <wicket:body> markup from the body's parent container
 IMarkupFragment Border.getMarkup(Component child)
          Search for the child markup in the file associated with the Border.
 IMarkupFragment Border.BorderBodyContainer.getMarkup(Component child)
          Get the child markup which must be in between the <span wicktet:id="myBorder"> tags
 

Uses of IMarkupFragment in org.apache.wicket.markup.html.internal
 

Methods in org.apache.wicket.markup.html.internal that return IMarkupFragment
 IMarkupFragment HtmlHeaderContainer.getMarkup()
           
 IMarkupFragment InlineEnclosure.getMarkup()
          InlineEnclosures keep their own cache of their markup because Component#markup is detached and later during Ajax request it is hard to re-lookup InlineEnclosure's markup from its parent.
 

Uses of IMarkupFragment in org.apache.wicket.markup.html.list
 

Methods in org.apache.wicket.markup.html.list that return IMarkupFragment
 IMarkupFragment ListView.getMarkup(Component child)
           
 IMarkupFragment Loop.getMarkup(Component child)
           
 

Uses of IMarkupFragment in org.apache.wicket.markup.html.panel
 

Methods in org.apache.wicket.markup.html.panel that return IMarkupFragment
 IMarkupFragment FragmentMarkupSourcingStrategy.chooseMarkup(Component component)
          Get the markup stream which shall be used to search for the fragment
protected  IMarkupFragment Fragment.chooseMarkup(MarkupContainer provider)
          Get the markup stream which shall be used to search for the fragment
 IMarkupFragment AssociatedMarkupSourcingStrategy.findMarkupInAssociatedFileHeader(MarkupContainer container, Component child)
          Search the child's markup in the header section of the markup
 IMarkupFragment IMarkupSourcingStrategy.getMarkup(MarkupContainer container, Component child)
          Will replace the respective component's method.
 IMarkupFragment AssociatedMarkupSourcingStrategy.getMarkup(MarkupContainer parent, Component child)
          Search for the child's markup in the associated markup file.
abstract  IMarkupFragment AbstractMarkupSourcingStrategy.getMarkup(MarkupContainer container, Component child)
           
 IMarkupFragment BorderMarkupSourcingStrategy.getMarkup(MarkupContainer container, Component child)
          Return null and thus use Border.getMarkup(child) to provide the Markup
 IMarkupFragment FragmentMarkupSourcingStrategy.getMarkup(MarkupContainer container, Component child)
          Search for the child's markup in the fragment markup.
 IMarkupFragment DefaultMarkupSourcingStrategy.getMarkup(MarkupContainer container, Component child)
          Get the markup for the child component, which is assumed to be a child of 'container'.
protected  IMarkupFragment AbstractMarkupSourcingStrategy.searchMarkupInTransparentResolvers(MarkupContainer container, Component child)
          If the child has not been directly added to the container, but via a TransparentWebMarkupContainer, then we are in trouble.
 

Uses of IMarkupFragment in org.apache.wicket.markup.repeater
 

Methods in org.apache.wicket.markup.repeater that return IMarkupFragment
 IMarkupFragment AbstractRepeater.getMarkup(Component child)
           
 

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

Methods in org.apache.wicket.util.tester that return IMarkupFragment
 IMarkupFragment BaseWicketTester.StartComponentInPage.getMarkup()
           
 

Methods in org.apache.wicket.util.tester with parameters of type IMarkupFragment
<C extends Component>
C
BaseWicketTester.startComponentInPage(C component, IMarkupFragment pageMarkup)
          Process a component.
<C extends Component>
C
BaseWicketTester.startComponentInPage(Class<C> componentClass, IMarkupFragment pageMarkup)
          Process a component.
 



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