Home | History | Annotate | Download | only in templates

Lines Matching refs:QName

35 import org.apache.xml.utils.QName;
118 public void setProperty(QName key, String value)
153 public String getProperty(QName key)
182 public void setBooleanProperty(QName key, boolean value)
210 public boolean getBooleanProperty(QName key)
238 public void setIntProperty(QName key, int value)
266 public int getIntProperty(QName key)
289 * Set an output property with a QName value. The QName will be turned
296 public void setQNameProperty(QName key, QName value)
332 * Set an output property with a QName value. The QName will be turned
339 public void setQNameProperty(String key, QName value)
345 * Searches for the qname property with the specified key in the property list.
351 * @return the value in this property list as a QName value, or false
354 public QName getQNameProperty(QName key)
360 * Searches for the qname property with the specified key in the property list.
366 * @return the value in this property list as a QName value, or false
369 public QName getQNameProperty(String key)
375 * Searches for the qname property with the specified key in the property list.
382 * @return the value in this property list as a QName value, or false
385 public static QName getQNameProperty(String key, Properties props)
391 return QName.getQNameFromString(s);
397 * Set an output property with a QName list value. The QNames will be turned
404 public void setQNameProperties(QName key, Vector v)
410 * Set an output property with a QName list value. The QNames will be turned
427 QName qname = (QName) v.elementAt(i);
429 fsb.append(qname.toNamespacedString());
439 * Searches for the list of qname properties with the specified key in
449 public Vector getQNameProperties(QName key)
455 * Searches for the list of qname properties with the specified key in
471 * Searches for the list of qname properties with the specified key in
507 QName qname = QName.getQNameFromString(buf.toString());
508 v.addElement(qname);
524 QName qname = QName.getQNameFromString(buf.toString());
525 v.addElement(qname);