Uses of Class
org.apache.wicket.markup.ComponentTag

Packages that use ComponentTag
org.apache.wicket The core Wicket package. 
org.apache.wicket.ajax.markup.html   
org.apache.wicket.ajax.markup.html.form   
org.apache.wicket.ajax.markup.html.navigation.paging   
org.apache.wicket.behavior   
org.apache.wicket.markup Base package for markup. 
org.apache.wicket.markup.head.filter   
org.apache.wicket.markup.html Base package of HTML markup. 
org.apache.wicket.markup.html.basic Basic HTML components. 
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.upload Support for upload forms (using multipart requests). 
org.apache.wicket.markup.html.image Image components. 
org.apache.wicket.markup.html.image.resource Resource support for image components. 
org.apache.wicket.markup.html.include Components for including content from non-Wicket sources. 
org.apache.wicket.markup.html.internal   
org.apache.wicket.markup.html.link Link components. 
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.parser The default parsing engine of Wicket. 
org.apache.wicket.markup.parser.filter Default parsing extensions. 
org.apache.wicket.markup.repeater   
org.apache.wicket.markup.resolver Resolvers implement the IComponentResolver interface and must be registered with the application. 
org.apache.wicket.markup.transformer Transformers are able to post-process (transform) the output generated by a Component. 
org.apache.wicket.validation.validator This package provides an implementation of Wicket's validation support. 
 

Uses of ComponentTag in org.apache.wicket
 

Methods in org.apache.wicket with parameters of type ComponentTag
protected  void Component.checkComponentTag(ComponentTag tag, String name)
          Checks whether the given type has the expected name.
protected  void Component.checkComponentTagAttribute(ComponentTag tag, String key, String value)
          Checks that a given tag has a required attribute value.
 void AttributeModifier.onComponentTag(Component component, ComponentTag tag)
           
protected  void Component.onComponentTag(ComponentTag tag)
          Processes the component tag.
 void MarkupContainer.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
          Handle the container's body.
 void Component.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
          Processes the body.
protected  void MarkupContainer.renderAll(MarkupStream markupStream, ComponentTag openTag)
          Loop through the markup in this container
protected  void Component.renderComponentTag(ComponentTag tag)
          Writes a simple tag out to the response stream.
protected  void Component.renderPlaceholderTag(ComponentTag tag, Response response)
          Renders a placeholder tag for the component when it is invisible and Component.setOutputMarkupPlaceholderTag(boolean) has been called with true.
 void AttributeModifier.replaceAttributeValue(Component component, ComponentTag tag)
          Checks the given component tag for an instance of the attribute to modify and if all criteria are met then replace the value of this attribute with the value of the contained model object.
protected  void Component.replaceComponentTagBody(MarkupStream markupStream, ComponentTag tag, CharSequence body)
          Replaces the body with the given one.
 

Uses of ComponentTag in org.apache.wicket.ajax.markup.html
 

Methods in org.apache.wicket.ajax.markup.html with parameters of type ComponentTag
protected  void AjaxLink.onComponentTag(ComponentTag tag)
           
protected  void AjaxFallbackLink.onComponentTag(ComponentTag tag)
          Removes any inline 'onclick' attributes set by Link#onComponentTag(ComponentTag).
 

Uses of ComponentTag in org.apache.wicket.ajax.markup.html.form
 

Methods in org.apache.wicket.ajax.markup.html.form with parameters of type ComponentTag
protected  void AjaxSubmitLink.onComponentTag(ComponentTag tag)
           
protected  void AjaxFallbackButton.onComponentTag(ComponentTag tag)
           
 

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

Methods in org.apache.wicket.ajax.markup.html.navigation.paging with parameters of type ComponentTag
protected  void AjaxPagingNavigationBehavior.onComponentTag(ComponentTag tag)
           
 

Uses of ComponentTag in org.apache.wicket.behavior
 

Methods in org.apache.wicket.behavior with parameters of type ComponentTag
 void Behavior.onComponentTag(Component component, ComponentTag tag)
          Called any time a component that has this behavior registered is rendering the component tag.
 void AbstractAjaxBehavior.onComponentTag(Component component, ComponentTag tag)
           
protected  void AbstractAjaxBehavior.onComponentTag(ComponentTag tag)
          Called any time a component that has this handler registered is rendering the component tag.
 

Uses of ComponentTag in org.apache.wicket.markup
 

Subclasses of ComponentTag in org.apache.wicket.markup
 class WicketTag
          WicketTag extends ComponentTag and will be created by a MarkupParser whenever it parses a tag in the wicket namespace.
 

Methods in org.apache.wicket.markup that return ComponentTag
 ComponentTag ComponentTag.getOpenTag()
          If set, return the corresponding open tag (ComponentTag).
 ComponentTag MarkupStream.getPreviousTag()
          Sometime its necessary to get the previous markup element versus the current one.
 ComponentTag MarkupStream.getTag()
           
 ComponentTag WicketTag.mutable()
          Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
 ComponentTag ComponentTag.mutable()
          Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
 ComponentTag MarkupIterator.nextTag()
           
 

Methods in org.apache.wicket.markup with parameters of type ComponentTag
static void TagUtils.copyAttributes(MarkupContainer component, ComponentTag tag)
          Copy attributes from e.g.
static boolean TagUtils.isBodyTag(ComponentTag tag)
           
 void ComponentTag.setOpenTag(ComponentTag tag)
          Assuming this is a close tag, assign it's corresponding open tag.
 void MarkupStream.skipToMatchingCloseTag(ComponentTag openTag)
          Renders markup until a closing tag for openTag is reached.
 

Constructors in org.apache.wicket.markup with parameters of type ComponentTag
ComponentTag(ComponentTag tag)
          Constructor
WicketParseException(String message, ComponentTag tag)
          Construct.
WicketTag(ComponentTag tag)
          Constructor
 

Uses of ComponentTag in org.apache.wicket.markup.head.filter
 

Methods in org.apache.wicket.markup.head.filter with parameters of type ComponentTag
protected  void HeaderResponseContainer.onComponentTag(ComponentTag tag)
           
 void HeaderResponseContainer.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
           
 

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

Methods in org.apache.wicket.markup.html with parameters of type ComponentTag
 Component TransparentWebMarkupContainer.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component HeaderPartContainer.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
          The tag must be resolved against the panel and not against the page
 

Uses of ComponentTag in org.apache.wicket.markup.html.basic
 

Methods in org.apache.wicket.markup.html.basic with parameters of type ComponentTag
protected  void MultiLineLabel.onComponentTag(ComponentTag tag)
           
protected  void Label.onComponentTag(ComponentTag tag)
          Processes the component tag.
protected  void EnumLabel.onComponentTag(ComponentTag tag)
           
 void MultiLineLabel.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
           
 void Label.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
          Processes the body.
 void EnumLabel.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
           
 

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

Methods in org.apache.wicket.markup.html.border with parameters of type ComponentTag
protected  void Border.BorderBodyContainer.onComponentTag(ComponentTag tag)
           
 void Border.BorderBodyContainer.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
           
 Component Border.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
          Try to resolve a component.
 

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

Methods in org.apache.wicket.markup.html.form with parameters of type ComponentTag
protected  void Form.appendDefaultButtonField(MarkupStream markupStream, ComponentTag openTag)
          If a default IFormSubmittingComponent was set on this form, this method will be called to render an extra field with an invisible style so that pressing enter in one of the textfields will do a form submit using this component.
protected  void TextField.onComponentTag(ComponentTag tag)
          Processes the component tag.
protected  void SubmitLink.onComponentTag(ComponentTag tag)
           
protected  void RadioGroup.onComponentTag(ComponentTag tag)
           
protected  void RadioChoice.onComponentTag(ComponentTag tag)
           
protected  void Radio.onComponentTag(ComponentTag tag)
           
protected  void PasswordTextField.onComponentTag(ComponentTag tag)
          Processes the component tag.
protected  void NumberTextField.onComponentTag(ComponentTag tag)
           
protected  void ListMultipleChoice.onComponentTag(ComponentTag tag)
           
protected  void ListChoice.onComponentTag(ComponentTag tag)
           
protected  void ImageButton.onComponentTag(ComponentTag tag)
          Processes the component tag.
protected  void FormComponentPanel.onComponentTag(ComponentTag tag)
          Processes the component tag.
protected  void FormComponentLabel.onComponentTag(ComponentTag tag)
           
protected  void FormComponent.onComponentTag(ComponentTag tag)
          Processes the component tag.
protected  void Form.onComponentTag(ComponentTag tag)
           
protected  void DropDownChoice.onComponentTag(ComponentTag tag)
          Processes the component tag.
protected  void CheckGroup.onComponentTag(ComponentTag tag)
           
protected  void CheckBoxMultipleChoice.onComponentTag(ComponentTag tag)
           
protected  void CheckBox.onComponentTag(ComponentTag tag)
          Processes the component tag.
protected  void Check.onComponentTag(ComponentTag tag)
           
protected  void Button.onComponentTag(ComponentTag tag)
          Processes the component tag.
protected  MarkupElement AutoLabelTagHandler.onComponentTag(ComponentTag tag)
           
protected  void AutoLabelResolver.AutoLabel.onComponentTag(ComponentTag tag)
           
protected  void AbstractCheckSelector.onComponentTag(ComponentTag tag)
           
 void TextArea.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
          Handle the container's body.
 void SimpleFormComponentLabel.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
           
 void RadioChoice.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
           
 void Form.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
          Append an additional hidden input tag to support anchor tags that can submit a form.
 void CheckBoxMultipleChoice.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
           
 void AbstractChoice.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
          Handle the container's body.
protected  void FormComponent.onDisabled(ComponentTag tag)
          Called by FormComponent.onComponentTag(ComponentTag) when the component is disabled.
protected  void Form.renderPlaceholderTag(ComponentTag tag, Response response)
           
 Component AutoLabelTextResolver.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component AutoLabelResolver.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 

Uses of ComponentTag in org.apache.wicket.markup.html.form.upload
 

Methods in org.apache.wicket.markup.html.form.upload with parameters of type ComponentTag
protected  void MultiFileUploadField.onComponentTag(ComponentTag tag)
           
protected  void FileUploadField.onComponentTag(ComponentTag tag)
           
 

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

Methods in org.apache.wicket.markup.html.image with parameters of type ComponentTag
protected  void Image.addAntiCacheParameter(ComponentTag tag)
          Adds random noise to the url every request to prevent the browser from caching the image.
 void ContextPathGenerator.onComponentTag(Component component, ComponentTag tag)
          Called any time a component that has this behavior registered is rendering the component tag.
protected  void Image.onComponentTag(ComponentTag tag)
           
protected  void ContextImage.onComponentTag(ComponentTag tag)
           
 void Image.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
           
 

Uses of ComponentTag in org.apache.wicket.markup.html.image.resource
 

Methods in org.apache.wicket.markup.html.image.resource with parameters of type ComponentTag
 void LocalizedImageResource.setSrcAttribute(ComponentTag tag)
           
 

Uses of ComponentTag in org.apache.wicket.markup.html.include
 

Methods in org.apache.wicket.markup.html.include with parameters of type ComponentTag
 void Include.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
           
 

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

Methods in org.apache.wicket.markup.html.internal that return ComponentTag
 ComponentTag HtmlHeaderContainer.HeaderStreamState.getOpenTag()
           
 

Methods in org.apache.wicket.markup.html.internal with parameters of type ComponentTag
protected  void InlineEnclosure.onComponentTag(ComponentTag tag)
           
 void HtmlHeaderContainer.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
          First render the body of the component.
 Component Enclosure.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 

Uses of ComponentTag in org.apache.wicket.markup.html.link
 

Methods in org.apache.wicket.markup.html.link with parameters of type ComponentTag
protected  CharSequence Link.appendAnchor(ComponentTag tag, CharSequence url)
          Appends any anchor to the url if the url is not null and the url does not already contain an anchor (url.indexOf('#') != -1).
protected  void AbstractLink.disableLink(ComponentTag tag)
          Alters the tag so that the link renders as disabled.
protected  void Link.onComponentTag(ComponentTag tag)
          Handles this link's tag.
protected  void InlineFrame.onComponentTag(ComponentTag tag)
          Handles this frame's tag.
protected  void ExternalLink.onComponentTag(ComponentTag tag)
          Processes the component tag.
protected  void ClientSideImageMap.onComponentTag(ComponentTag tag)
           
 void AbstractLink.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
          Renders this link's body.
 

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

Methods in org.apache.wicket.markup.html.list with parameters of type ComponentTag
protected  void OddEvenListItem.onComponentTag(ComponentTag tag)
          Processes the component tag.
 

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

Methods in org.apache.wicket.markup.html.panel with parameters of type ComponentTag
 void IMarkupSourcingStrategy.onComponentTag(Component component, ComponentTag tag)
          Will be called in addition to Component.onComponentTag(ComponentTag) and allows the strategy to modify the component's tag or any of the tag attributes.
 void DefaultMarkupSourcingStrategy.onComponentTag(Component component, ComponentTag tag)
          Nothing to add to the response by default
 void AssociatedMarkupSourcingStrategy.onComponentTag(Component component, ComponentTag tag)
           
 void AbstractMarkupSourcingStrategy.onComponentTag(Component component, ComponentTag tag)
          Make sure we open up open-close tags to open-body-close
 void PanelMarkupSourcingStrategy.onComponentTagBody(Component component, MarkupStream markupStream, ComponentTag openTag)
          Skip the panel's body markup which is expected to contain raw markup only (no wicket components) and which will be ignored / removed.
 void IMarkupSourcingStrategy.onComponentTagBody(Component component, MarkupStream markupStream, ComponentTag openTag)
          Will replace the respective component's method.
 void FragmentMarkupSourcingStrategy.onComponentTagBody(Component component, MarkupStream markupStream, ComponentTag openTag)
          Skip the body markup associated with the 'component'.
 void DefaultMarkupSourcingStrategy.onComponentTagBody(Component component, MarkupStream markupStream, ComponentTag openTag)
          Invoke the component's onComponentTagBody().
 void BorderMarkupSourcingStrategy.onComponentTagBody(Component component, MarkupStream markupStream, ComponentTag openTag)
           
 void AbstractMarkupSourcingStrategy.onComponentTagBody(Component component, MarkupStream markupStream, ComponentTag openTag)
          Skip the components body which is expected to be raw markup only (no wicket components).
 

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

Methods in org.apache.wicket.markup.parser that return ComponentTag
 ComponentTag TagStack.getNotClosedTag()
           
 

Methods in org.apache.wicket.markup.parser with parameters of type ComponentTag
 void TagStack.assertValidInStack(ComponentTag tag)
          Assert that tag has no mismatch error.
static boolean TagStack.hasEqualTagName(ComponentTag tag1, ComponentTag tag2)
          Compare tag name including namespace
protected abstract  MarkupElement AbstractMarkupFilter.onComponentTag(ComponentTag tag)
          Invoked when a ComponentTag was found.
 

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

Methods in org.apache.wicket.markup.parser.filter with parameters of type ComponentTag
protected  boolean WicketLinkTagHandler.analyzeAutolinkCondition(ComponentTag tag)
          Analyze the tag.
static String InlineEnclosureHandler.getInlineEnclosureAttribute(ComponentTag tag)
           
static boolean HtmlHandler.hasEqualTagName(ComponentTag tag1, ComponentTag tag2)
          Compare tag name including namespace
 void WicketMessageTagHandler.AttributeLocalizer.onComponentTag(Component component, ComponentTag tag)
           
protected  MarkupElement WicketTagIdentifier.onComponentTag(ComponentTag tag)
          Get the next tag from the next MarkupFilter in the chain and search for Wicket specific tags.
protected  MarkupElement WicketRemoveTagHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement WicketNamespaceHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement WicketMessageTagHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement WicketLinkTagHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement WicketContainerTagHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement StyleAndScriptIdentifier.onComponentTag(ComponentTag tag)
           
protected  MarkupElement RootMarkupFilter.onComponentTag(ComponentTag tag)
          Noop
protected  MarkupElement RelativePathPrefixHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement OpenCloseTagExpander.onComponentTag(ComponentTag tag)
           
protected  MarkupElement InlineEnclosureHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement HtmlProblemFinder.onComponentTag(ComponentTag tag)
           
protected  MarkupElement HtmlHeaderSectionHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement HtmlHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement HeadForceTagIdHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement EnclosureHandler.onComponentTag(ComponentTag tag)
           
protected  MarkupElement ConditionalCommentFilter.onComponentTag(ComponentTag tag)
          Noop
protected  boolean OpenCloseTagExpander.onFound(ComponentTag tag)
          Can be subclassed to do other things.
 Component WicketMessageTagHandler.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component WicketLinkTagHandler.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component RelativePathPrefixHandler.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component InlineEnclosureHandler.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component EnclosureHandler.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 

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

Methods in org.apache.wicket.markup.repeater with parameters of type ComponentTag
protected  void OddEvenItem.onComponentTag(ComponentTag tag)
           
 

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

Methods in org.apache.wicket.markup.resolver with parameters of type ComponentTag
 Component WicketMessageResolver.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component WicketContainerResolver.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component MarkupInheritanceResolver.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component IComponentResolver.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
          Try to resolve a component.
 Component HtmlHeaderResolver.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component FragmentResolver.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component AutoLinkResolver.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
 Component AutoLinkResolver.AutolinkBookmarkablePageLink.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
           
static Component ComponentResolvers.resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag, ComponentResolvers.ResolverFilter filter)
          Attempts to resolve a component using resolvers.
 

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

Methods in org.apache.wicket.markup.transformer with parameters of type ComponentTag
 void XsltTransformerBehavior.onComponentTag(Component component, ComponentTag tag)
           
 void AbstractOutputTransformerContainer.onComponentTagBody(MarkupStream markupStream, ComponentTag openTag)
           
 

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

Methods in org.apache.wicket.validation.validator with parameters of type ComponentTag
 void StringValidator.onComponentTag(Component component, ComponentTag tag)
           
 



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