Package org.jrdf.sparql.parser.node

Examples of org.jrdf.sparql.parser.node.AVariable


        Attribute att = new AttributeImpl(attributeName, type);
        avp.put(att, anyNode);
    }

    private String getVariableName(AVariableResourceTripleElement element) {
        AVariable variable = (AVariable) element.getVariable();
        return variable.getVariablename().getText();
    }
View Full Code Here


        AVariable variable = (AVariable) element.getVariable();
        return variable.getVariablename().getText();
    }

    private String getVariableName(AVariableObjectTripleElement element) {
        AVariable variable = (AVariable) element.getVariable();
        return variable.getVariablename().getText();
    }
View Full Code Here

TOP

Related Classes of org.jrdf.sparql.parser.node.AVariable

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.