root/BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/QueryPathGenerator.java @ 88

リビジョン 83, 0.7 KB (コミッタ: atsuko, 10 年 前)

Changed for new Java Classes

行番号 
1/*
2 * To change this license header, choose License Headers in Project Properties.
3 * To change this template file, choose Tools | Templates
4 * and open the template in the editor.
5 */
6
7package org.biohackathon.SPARQLBuilder.OWL;
8
9/**
10 *
11 * @author atsuko
12 */
13public class QueryPathGenerator {
14    private String sparqlEndpoint;
15    private RDFSchemaAnalyzer analyzer;
16   
17    public void setSPARQLendpoint(String sparqlEndpoint){
18        this.sparqlEndpoint = sparqlEndpoint;
19    }
20   
21    public SClass[] getClasses(){
22        // KOKO
23        return new SClass[10];
24    }
25   
26    public Path[] getPaths(String startClass, String endClass, boolean countLink){
27        // KOKO
28        return new Path[10];
29    }
30   
31}
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。