Example usage for org.dom4j.util UserDataAttribute UserDataAttribute

List of usage examples for org.dom4j.util UserDataAttribute UserDataAttribute

Introduction

In this page you can find the example usage for org.dom4j.util UserDataAttribute UserDataAttribute.

Prototype

public UserDataAttribute(QName qname, String text) 

Source Link

Usage

From source file:org.orbeon.oxf.xml.dom4j.NonLazyUserDataDocumentFactory.java

License:Open Source License

public Attribute createAttribute(final Element ownerElement, final QName qName, final String value) {
    return new UserDataAttribute(qName, value);
}