Lines Matching defs:createOntology
54 public OWLOntology createOntology();
56 public OWLOntology createOntology(URI uri);
93 public static OWLOntology createOntology() {
94 return createOntology(false);
97 public static OWLOntology createOntology(URI uri) {
98 return createOntology(uri, false);
109 public static OWLOntology createOntology( boolean importOWLS ) {
110 OWLOntology ont = factory.createOntology();
124 public static OWLOntology createOntology( URI uri, boolean importOWLS ) {
125 OWLOntology ont = factory.createOntology(uri);
159 owlsService = kb.createOntology( URI.create( OWLS.Service.URI ) );
160 owlsProfile = kb.createOntology( URI.create( OWLS.Profile.URI ) );
161 owlsProcess = kb.createOntology( URI.create( OWLS.Process.URI ) );
162 owlsGrounding = kb.createOntology( URI.create( OWLS.Grounding.URI ) );