Package xbird.xquery.type.node

Examples of xbird.xquery.type.node.NodeType


    [122] AnyKindTest ::= <"node" "("> ")"
    [124] TextTest     ::= <"text" "("> ")"
    [125] CommentTest ::= <"comment" "("> ")"
    ************************************************************************/
    final public NodeType parseKindTest() throws ParseException, XQueryException {
        final NodeType nodeType;
        switch(jj_nt.kind) {
            case DocumentLpar:
            case DocumentLparForKindTest:
                nodeType = parseDocumentTest();
                break;
View Full Code Here


    [78] NameTest      ::= QName | Wildcard
    [79] Wildcard      ::= "*" | (NCName ":" "*") | ("*" ":" NCName)
    ************************************************************************/
    final public NodeTest parseNodeTest(int axis) throws ParseException, XQueryException {
        final NodeTest nt;
        NodeType kind = null;
        switch(jj_nt.kind) {
            case ElementType:
            case AttributeType:
            case SchemaElementType:
            case SchemaAttributeType:
View Full Code Here

     [122] AnyKindTest ::= <"node" "("> ")"
     [124] TextTest     ::= <"text" "("> ")"
     [125] CommentTest ::= <"comment" "("> ")"
     ************************************************************************/
    final public NodeType parseKindTest() throws ParseException, XQueryException {
        final NodeType nodeType;
        switch(jj_nt.kind) {
            case DocumentLpar:
            case DocumentLparForKindTest:
                nodeType = parseDocumentTest();
                break;
View Full Code Here

     [78] NameTest      ::= QName | Wildcard
     [79] Wildcard      ::= "*" | (NCName ":" "*") | ("*" ":" NCName)
     ************************************************************************/
    final public NodeTest parseNodeTest(int axis) throws ParseException, XQueryException {
        final NodeTest nt;
        NodeType kind = null;
        switch(jj_nt.kind) {
            case ElementType:
            case AttributeType:
            case SchemaElementType:
            case SchemaAttributeType:
View Full Code Here

TOP

Related Classes of xbird.xquery.type.node.NodeType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.