| 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 | |
|---|
| 7 | package org.biohackathon.SPARQLBuilder.OWL; |
|---|
| 8 | |
|---|
| 9 | /** |
|---|
| 10 | * |
|---|
| 11 | * @author atsuko |
|---|
| 12 | */ |
|---|
| 13 | import java.util.*; |
|---|
| 14 | |
|---|
| 15 | public class SimpleClassGraph { |
|---|
| 16 | //private int nnode; |
|---|
| 17 | private String[] classURIs; |
|---|
| 18 | private List<Map<Integer,Integer>> edges; // node, node, number of edges |
|---|
| 19 | |
|---|
| 20 | /* |
|---|
| 21 | public class SCEdge{ |
|---|
| 22 | //int node; |
|---|
| 23 | int nedge; |
|---|
| 24 | }*/ |
|---|
| 25 | } |
|---|