/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package org.biohackathon.SPARQLBuilder.OWL;

/**
 *
 * @author atsuko
 */
public class QueryPathGenerator {
    private String sparqlEndpoint;
    private RDFSchemaAnalyzer analyzer;
    
    public void setSPARQLendpoint(String sparqlEndpoint){
        this.sparqlEndpoint = sparqlEndpoint;
    }
    
    public SClass[] getClasses(){
        // KOKO
        return new SClass[10];
    }
    
    public Path[] getPaths(String startClass, String endClass, boolean countLink){
        // KOKO
        return new Path[10];
    }
    
}
