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

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

Introduction

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

Prototype

public void setNamespace(final String namespace) 

Source Link

Document

Sets the tag namespace.

Usage

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);
    xmltag.setName(tag);//w  w  w  . j a va 2  s.co m
    xmltag.setType(type);
    return xmltag;
}