Uses of Interface
org.topbraid.spin.model.Variable

Packages that use Variable
org.topbraid.spin.model The SPIN object model (subclasses of Jena Resource). 
org.topbraid.spin.model.visitor Support for traversing SPIN object trees. 
 

Uses of Variable in org.topbraid.spin.model
 

Methods in org.topbraid.spin.model that return Variable
static Variable SPINFactory.asVariable(RDFNode node)
          Checks whether a given RDFNode can be cast into a Variable and - if yes - converts it into an instance of Variable.
static Variable SPINFactory.createVariable(Model model, java.lang.String varName)
          Creates a new Variable as a blank node in a given Model.
 Variable Let.getVariable()
          Gets the variable on the left hand side of the LET.
 

Methods in org.topbraid.spin.model that return types with arguments of type Variable
 java.util.List<Variable> Select.getResultVariables()
          Gets a list of result variables, or null if we have a star results list.
 

Methods in org.topbraid.spin.model with parameters of type Variable
static Let SPINFactory.createLet(Model model, Variable variable, RDFNode expression)
          Creates a Let in a given Model as a blank node.
 

Uses of Variable in org.topbraid.spin.model.visitor
 

Methods in org.topbraid.spin.model.visitor with parameters of type Variable
 void ExpressionWalker.visit(Variable variable)
           
 void ExpressionVisitor.visit(Variable variable)
           
 void AbstractExpressionVisitor.visit(Variable variable)