/*
 * 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
 */
import java.util.*;

public class SimpleClassGraph {
    //private int nnode;
    private String[] classURIs;
    private List<Map<Integer,Integer>> edges; // node, node, number of edges
    
    /*
    public class SCEdge{
        //int node;
        int nedge;    
    }*/
}
