Node arg2Node = null;
String arg1 = argument1.toString();
if(arg1.startsWith("http://kres.iks-project.eu/ontology/meta/variables#")){
arg1 = "?" + arg1.replace("http://kres.iks-project.eu/ontology/meta/variables#", "");
arg1Node = new Node_RuleVariable(arg1, jenaVariableMap.getVariableIndex(arg1));
}
else{
arg1Node = getTypedLiteral(argument1);
}
String arg2 = argument2.toString();
if(arg2.startsWith("http://kres.iks-project.eu/ontology/meta/variables#")){
arg2 = "?" + arg2.replace("http://kres.iks-project.eu/ontology/meta/variables#", "");
arg2Node = new Node_RuleVariable(arg2, jenaVariableMap.getVariableIndex(arg2));
}
else{
arg2Node = getTypedLiteral(argument2);
}