Home | History | Annotate | Download | only in impl

Lines Matching refs:prefix

17 	/** XML namespace prefix */
18 private String prefix;
24 * Splits a qname into prefix and localname.
33 prefix = qname.substring(0, colon);
38 prefix = "";
45 * @param prefix the prefix
48 public QName(String prefix, String localName)
50 this.prefix = prefix;
56 * @return Returns whether the QName has a prefix.
60 return prefix != null && prefix.length() > 0;
74 * @return the prefix
78 return prefix;