差分発生行の前後
無視リスト:
更新日時:
2014/09/26 18:40:24 (10 年 前)
更新者:
nori
ログメッセージ:

getPath() でクロールしたファイルのpathをとれるようにした

パス:
BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder
ファイル:
2 変更

凡例:

変更なし
追加
削除
  • BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/RDFSchemaAnalyzerFactory.java

    r179 r190  
    5757                        return new EndpointAnalyzer(uri); 
    5858                }else{ 
    59                         JenaModelGenerator jmGene = new JenaModelGenerator(mFile.getEndpointURI()); 
     59                        JenaModelGenerator jmGene = new JenaModelGenerator(mFile.getPath()); 
    6060                        return new AcquiredStructureAnalyzer(jmGene.getEndpointURI(), jmGene.getGraphURIs(), jmGene.getModel()); 
    6161                } 
  • BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/endpointMetadata/MetadataFile.java

    r187 r190  
    2020 
    2121        Model model = null; 
     22        File path = null; 
    2223        String endpointURI = null; 
    2324        Calendar startDateTime = null; 
     
    3738        public MetadataFile(File file) throws Exception{ 
    3839                readFile(file); 
    39         } 
    40  
     40                this.path = file; 
     41        } 
     42 
     43        public String getPath(){ 
     44                return path.getAbsolutePath(); 
     45        } 
     46         
    4147        public String getEndpointURI(){ 
    4248                return endpointURI;