462463464465466467468
* <p>Create an OntModel according to this model specification. * The base model comes from the underlying ModelMaker and is named by the * given name.</p> */ public Model implementCreateModelOver( String name ) { return new OntModelImpl( this, maker.createModel( name, false ) ); }
354355356357358359360
* @param base An existing model to treat as an ontology model, or null. * @return A new ontology model * @see OntModelSpec */ public static OntModel createOntologyModel( OntModelSpec spec, Model base ) { return new OntModelImpl( spec, base ); }
362363364365366367
/** * Answer a new ontology model constructed according to the specification, which includes * a ModelMaker which will create the necessary base model. */ public static OntModel createOntologyModel( OntModelSpec spec ) { return new OntModelImpl( spec ); }