| 1 | package org.biohackathon.SPARQLBuilder.OWL;
|
|---|
| 2 |
|
|---|
| 3 | import java.util.List;
|
|---|
| 4 |
|
|---|
| 5 | /**
|
|---|
| 6 | * 襍キ轤ケ縺ィ縺ェ繧九Μ繧ス繝シ繧ケ縺九i騾先ャ。逧�↓隍�焚繝ェ繝ウ繧ッ縺ァ邨らせ繝ェ繧ス繝シ繧ケ縺セ縺ァ謗・邯壹&繧後k荳縺、縺ョ繝代せ繧定ィ倩ソー縺吶k
|
|---|
| 7 | * @author Yamaguchi
|
|---|
| 8 | * @since 28.01.2014
|
|---|
| 9 | * @version 29.01.2014
|
|---|
| 10 | */
|
|---|
| 11 | public class Path{
|
|---|
| 12 |
|
|---|
| 13 | /**
|
|---|
| 14 | * 繝代せ縺ョ襍キ轤ケ縺ィ縺ェ繧九け繝ゥ繧ケ縺ョURI
|
|---|
| 15 | */
|
|---|
| 16 | private String startClass;
|
|---|
| 17 | private int width;
|
|---|
| 18 |
|
|---|
| 19 | /**
|
|---|
| 20 | * 繝代せ縺ョ襍キ轤ケ縺九i邨らせ縺ォ蜷代°縺」縺ヲ騾先ャ。逧�↓縺、縺ェ縺後k繧ッ繝ゥ繧ケ髢薙Μ繝ウ繧ッ縺ョ繝ェ繧ケ繝� |
|---|
| 21 | */
|
|---|
| 22 | private List<ClassLink> classLinks;
|
|---|
| 23 |
|
|---|
| 24 | public String getStartClass(){
|
|---|
| 25 | return startClass;
|
|---|
| 26 | }
|
|---|
| 27 |
|
|---|
| 28 | /* public String[] getProperties(){
|
|---|
| 29 | return properties;
|
|---|
| 30 | }
|
|---|
| 31 |
|
|---|
| 32 | public String[] getObjectClasses(){
|
|---|
| 33 | return objectClasses;
|
|---|
| 34 | }
|
|---|
| 35 |
|
|---|
| 36 | public Direction[] getDirections(){
|
|---|
| 37 | return directions;
|
|---|
| 38 | }
|
|---|
| 39 | */
|
|---|
| 40 | public List<ClassLink> getClassLinks(){
|
|---|
| 41 | return classLinks;
|
|---|
| 42 | }
|
|---|
| 43 |
|
|---|
| 44 | public int getWidth(){
|
|---|
| 45 | return width;
|
|---|
| 46 | }
|
|---|
| 47 |
|
|---|
| 48 | public Path(){}
|
|---|
| 49 |
|
|---|
| 50 | public Path(String startClass, List<ClassLink> classLinks, int width){
|
|---|
| 51 | this.startClass = startClass;
|
|---|
| 52 | this.classLinks = classLinks;
|
|---|
| 53 | this.width = width;
|
|---|
| 54 | }
|
|---|
| 55 |
|
|---|
| 56 | public void setStartClass(String startClass){
|
|---|
| 57 | this.startClass = startClass;
|
|---|
| 58 | }
|
|---|
| 59 |
|
|---|
| 60 | public void setClassLinks(List<ClassLink> classLinks){
|
|---|
| 61 | this.classLinks = classLinks;
|
|---|
| 62 | }
|
|---|
| 63 |
|
|---|
| 64 | public void setWidth(int width){
|
|---|
| 65 | this.width = width;
|
|---|
| 66 | }
|
|---|
| 67 |
|
|---|
| 68 | } |
|---|