- 更新日時:
- 2014/06/18 15:15:37 (10 年 前)
- ファイル:
-
- 1 移動
凡例:
- 変更なし
- 追加
- 削除
-
BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/RDFSchemaAnalyzer.java
r59 r80 10 10 * @version 29.01.2014 11 11 */ 12 public interface OWLQueryBuilder {12 public interface RDFSchemaAnalyzer { 13 13 /** 14 14 * 譏守、コ逧�↓RDF縺ァ譖ク縺九l縺ヲ縺�k繧ッ繝ゥ繧ケ繧貞叙蠕励☆繧� … … 44 44 * @since 28.01.2014 45 45 */ 46 public Instance[] getInstances(String[] graphURIs, String keyword) throws Exception;46 // public Instance[] getInstances(String[] graphURIs, String keyword) throws Exception; 47 47 48 48 /** … … 81 81 * @since 28.01.2014 82 82 */ 83 public ClassLink[] getNextClassViaInstanceLink(String[] graphURIs, String originClass, int limit) throws Exception;83 // public ClassLink[] getNextClassViaInstanceLink(String[] graphURIs, String originClass, int limit) throws Exception; 84 84 85 public Path[] getPaths(String startClass, String endClass, int mode, boolean countLinks) throws Exception;85 // public Path[] getPaths(String startClass, String endClass, int mode, boolean countLinks) throws Exception; 86 86 87 public String createSPARQL(Path path) throws Exception;87 // public String createSPARQL(Path path) throws Exception; 88 88 89 89 /** … … 104 104 * @since 28.01.2014 105 105 */ 106 InstanceLink[] getNextInstancesViaInstanceLink(String[] graphURIs, String originInstance,107 int limit) throws Exception;106 // InstanceLink[] getNextInstancesViaInstanceLink(String[] graphURIs, String originInstance, 107 // int limit) throws Exception; 108 108 109 109 public LabelMap[] getLabels(String[] graphURIs, String[] resourceURIs, String language) throws Exception; 110 110 111 public ClassLink[] countLinks(String[] graphURIs, String startClassURI,112 ClassLink[] classLinks) throws Exception;111 // public ClassLink[] countLinks(String[] graphURIs, String startClassURI, 112 // ClassLink[] classLinks) throws Exception; 113 113 114 public SClass[] countInstances(String[] graphURIs, SClass[] classes) throws Exception;114 // public SClass[] countInstances(String[] graphURIs, SClass[] classes) throws Exception; 115 115 }