Searched defs:WILD (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DNodeTest.java48 public static final String WILD = "*"; field in class:NodeTest
102 * @return The namespace to be tested for, or {@link #WILD}, or null.
112 * @param ns The namespace to be tested for, or {@link #WILD}, or null.
128 * @return the local name to be tested, or {@link #WILD}, or an empty string.
138 * @param name the local name to be tested, or {@link #WILD}, or an empty string.
297 * True if this test has a null namespace and a local name of {@link #WILD}.
328 else if (((m_namespace == WILD) || (m_namespace == null))
329 && (m_name == WILD))
331 else if ((m_namespace != WILD) && (m_name == WILD))
[all...]

Completed in 31 milliseconds