//code completion only if it is clear that a string literal is started
return;
}
//propose string literals from the current file whose predicate URI matches that of the current predicate
PredicateObjectList objList = EcoreUtil2.getContainerOfType(model, PredicateObjectList.class);
if(objList!=null){
de.itemis.tooling.xturtle.xturtle.Predicate verb = objList.getVerb();
QualifiedName name = service.getQualifiedName(verb);
if(name!=null){
EObject root = EcoreUtil2.getRootContainer(model);
List<de.itemis.tooling.xturtle.xturtle.Predicate> candidates = EcoreUtil2.getAllContentsOfType(root, de.itemis.tooling.xturtle.xturtle.Predicate.class);
for (de.itemis.tooling.xturtle.xturtle.Predicate predicate : candidates) {