final IExpression rightTerm = (IExpression) seq.get(1).accept(this, term);
term.termParams.add(leftTerm);
term.termParams.add(rightTerm);
try {
if (operator.equals("#"))
term.termName = new Constant(
LiteralFactory
.createURILiteralWithoutLazyLiteral("<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>"),
term);
else
term.termName = new Constant(
LiteralFactory
.createURILiteralWithoutLazyLiteral("<http://www.w3.org/2000/01/rdf-schema#subClassOf>"),
term);
} catch (URISyntaxException e) {
throw new RIFException(e.getMessage());