blob: 6b812741c0fd0922acd4bc03f6176ef551f3f9ea [file] [log] [blame]
package org.apache.xpath.parser;
import org.apache.xml.dtm.DTMFilter;
/**
* This is an expression node that only exists for construction
* purposes.
*/
public class AnyKindTest extends KindTest
{
public AnyKindTest(XPath parser)
{
super(parser);
}
public int getWhatToShow()
{
return DTMFilter.SHOW_ALL;
}
}