Lines Matching refs:QName

21  * $Id: QName.java,v 1.2.4.1 2005/09/15 08:15:52 suresh_emailid Exp $
38 * [12 Variables and Parameters]) is specified as a QName. If it has a prefix,
46 public class QName implements java.io.Serializable
81 * Constructs an empty QName.
84 public QName(){}
87 * Constructs a new QName with the specified namespace URI and
93 public QName(String namespaceURI, String localName)
99 * Constructs a new QName with the specified namespace URI and
104 * @param validate If true the new QName will be validated and an IllegalArgumentException will
107 public QName(String namespaceURI, String localName, boolean validate)
131 * Constructs a new QName with the specified namespace URI, prefix
139 public QName(String namespaceURI, String prefix, String localName)
145 * Constructs a new QName with the specified namespace URI, prefix
151 * @param validate If true the new QName will be validated and an IllegalArgumentException will
154 public QName(String namespaceURI, String prefix, String localName, boolean validate)
185 * Construct a QName from a string, without namespace resolution. Good
191 public QName(String localName)
197 * Construct a QName from a string, without namespace resolution. Good
201 * @param validate If true the new QName will be validated and an IllegalArgumentException will
204 public QName(String localName, boolean validate)
227 * Construct a QName from a string, resolving the prefix
234 public QName(String qname, Stack namespaces)
240 * Construct a QName from a string, resolving the prefix
246 * @param validate If true the new QName will be validated and an IllegalArgumentException will
249 public QName(String qname, Stack namespaces, boolean validate)
318 * Construct a QName from a string, resolving the prefix
326 public QName(String qname, Element namespaceContext,
333 * Construct a QName from a string, resolving the prefix
340 * @param validate If true the new QName will be validated and an IllegalArgumentException will
343 public QName(String qname, Element namespaceContext,
407 * Construct a QName from a string, resolving the prefix
414 public QName(String qname, PrefixResolver resolver)
420 * Construct a QName from a string, resolving the prefix
426 * @param validate If true the new QName will be validated and an IllegalArgumentException will
429 public QName(String qname, PrefixResolver resolver, boolean validate)
601 * the passed object is a QName and it matches
612 if (object instanceof QName) {
613 QName qname = (QName) object;
627 * Given a string, create and return a QName object
630 * @param name String to use to create QName
632 * @return a QName object
634 public static QName getQNameFromString(String name)
638 QName qname;
643 qname = new QName(null, s1);
645 qname = new QName(s1, s2);