Searched defs:tagName (Results 1 - 3 of 3) sorted by relevance
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/nodes/ |
H A D | QueryNode.java | 46 public boolean containsTag(String tagName); argument 52 public boolean containsTag(CharSequence tagName); argument 55 * @param tagName 58 public Object getTag(String tagName); argument 61 * @param tagName 67 public Object getTag(CharSequence tagName); argument 92 * Associate the specified value with the specified tagName. If the tagName 93 * already exists, the old value is replaced. The tagName and value cannot be 94 * null. tagName wil 99 setTag(String tagName, Object value) argument 112 setTag(CharSequence tagName, Object value) argument 119 unsetTag(String tagName) argument 129 unsetTag(CharSequence tagName) argument [all...] |
H A D | QueryNodeImpl.java | 160 public void setTag(CharSequence tagName, Object value) { argument 161 this.tags.put(tagName.toString().toLowerCase(), value); 164 public void setTag(String tagName, Object value) { argument 165 this.tags.put(tagName.toLowerCase(), value); 168 public void unsetTag(String tagName) { argument 169 this.tags.remove(tagName.toLowerCase()); 176 public void unsetTag(CharSequence tagName) { argument 177 this.tags.remove(tagName.toString().toLowerCase()); 186 public boolean containsTag(CharSequence tagName) { argument 187 return this.tags.containsKey(tagName 191 containsTag(String tagName) argument 199 getTag(CharSequence tagName) argument 203 getTag(String tagName) argument [all...] |
/lucene-3.6.0/lucene/contrib/xml-query-parser/src/java/org/apache/lucene/xmlparser/ |
H A D | DOMUtils.java | 134 public static String getChildTextByTagName(Element e, String tagName) argument 136 Element child=getChildByTagName(e,tagName); 145 public static Element insertChild(Element parent, String tagName, String text) argument 147 Element child = parent.getOwnerDocument().createElement(tagName);
|
Completed in 2124 milliseconds