use of org.sirix.service.xml.xpath.filter.SchemaAttributeFilter in project sirix by sirixdb.
the class XPathParser method parseSchemaAttributeTest.
/**
* Parses the the rule SchemaAttributeTest according to the following production rule:
* <p>
* [61] SchemaAttributeTest ::= <"schema-attribute" "("> AttributeDeclaration ")" .
* </p>
*
* @return filter
*/
private Filter parseSchemaAttributeTest() {
consume("schema-attribute", true);
consume(TokenType.OPEN_BR, true);
final Filter filter = new SchemaAttributeFilter(getTransaction());
consume(TokenType.CLOSE_BR, true);
return filter;
}
Aggregations