Permalink
Browse files

Issue #57 Added static owlLoader() method to BMKnowledgebase to make …

…API more self-explanatory.
  • Loading branch information...
1 parent a0f75f6 commit bdee79f4ebe8e267c8d0f5646daa72d261d1c26f @julesjacobsen julesjacobsen committed Mar 15, 2017
Showing with 7 additions and 5 deletions.
  1. +7 −5 owlsim-core/src/main/java/org/monarchinitiative/owlsim/kb/BMKnowledgeBase.java
@@ -1,13 +1,13 @@
package org.monarchinitiative.owlsim.kb;
-import java.util.Map;
-import java.util.Set;
-
+import com.googlecode.javaewah.EWAHCompressedBitmap;
+import org.monarchinitiative.owlsim.io.OwlKnowledgeBase;
import org.monarchinitiative.owlsim.kb.impl.BMKnowledgeBaseOWLAPIImpl;
import org.monarchinitiative.owlsim.model.kb.Attribute;
import org.monarchinitiative.owlsim.model.kb.Entity;
-import com.googlecode.javaewah.EWAHCompressedBitmap;
+import java.util.Map;
+import java.util.Set;
/**
* An interface to an ontology in which the fundamental unit of representation of
@@ -351,7 +351,9 @@
public int getRootIndex();
-
+ public static OwlKnowledgeBase.Loader owlLoader() {
+ return OwlKnowledgeBase.loader();
+ }

0 comments on commit bdee79f

Please sign in to comment.