Example usage for org.apache.wicket.markup.parser XmlTag XmlTag

List of usage examples for org.apache.wicket.markup.parser XmlTag XmlTag

Introduction

In this page you can find the example usage for org.apache.wicket.markup.parser XmlTag XmlTag.

Prototype

public XmlTag() 

Source Link

Document

Construct.

Usage

From source file:com.myamamoto.wicket.misc.behavior.AppendErrorClassOnErrorBehaviorTest.java

License:Apache License

@Before
public void setUp() {
    this.tester = new WicketTester();
    this.behavior = new AppendErrorClassOnErrorBehavior();
    this.component = new WebComponent("component");
    this.componentTag = new ComponentTag(new XmlTag());
}

From source file:org.wicketstuff.minis.apanel.GridLayout.java

License:Apache License

private static XmlTag createXmlTag(final String name, final XmlTag.TagType type) {
    final XmlTag xmlTag = new XmlTag();
    xmlTag.setType(type);//from  w ww  .j  a  va2  s.c o m
    xmlTag.setName(name);
    return xmlTag;
}

From source file:sf.wicklet.wicketext.markup.impl.WicketWriter.java

License:Apache License

protected XmlTag createXmlTag(final String namespace, final String tag, final TagType type) {
    final XmlTag xmltag = new XmlTag();
    xmltag.setNamespace(namespace);//from w  w w  .j  a  v a 2s .c om
    xmltag.setName(tag);
    xmltag.setType(type);
    return xmltag;
}

From source file:sf.wicklet.wicketext.markup.impl.WicketWriter.java

License:Apache License

protected XmlTag createXmlTag(final String tag, final TagType type) {
    final XmlTag xmltag = new XmlTag();
    xmltag.setName(tag);//from w  w  w  .j av a  2s.c  o  m
    xmltag.setType(type);
    return xmltag;
}