Exemplo n.º 1
0
 @Override
 public Set<Variable> gatherVariables() {
   Set<Variable> ret = graphPattern.gatherVariables();
   ret.addAll(getVariables());
   return ret;
 }
Exemplo n.º 2
0
 public Set<Variable> getPatternVariables() {
   return (graphPattern == null) ? null : graphPattern.gatherVariables();
 }