Lines Matching refs:ont
72 OWLOntology ont = kb.createOntology();
73 CompositeProcess cp = ont.createCompositeProcess();
74 Input in = ont.createInput(URI.create( ns + "in" ));
79 ForEach forEach = ont.createForEach();
80 Local loopVar = ont.createLocal( URI.create( ns + "loopVar") );
86 Perform perform = ont.createPerform();
93 ont.write(System.out);
96 String zipcodeOnt = "http://www.daml.org/2001/10/html/zipcode-ont#";
100 OWLIndividual zip1 = ont.createInstance(ZipCode);
102 OWLIndividual zip2 = ont.createInstance(ZipCode);
104 OWLIndividual zip3 = ont.createInstance(ZipCode);
108 RDFList list = ont.createList(zip1).add(zip2).add(zip3);