1 | package org.biohackathon.SPARQLBuilder.OWL;
|
---|
2 |
|
---|
3 | import java.util.List;
|
---|
4 |
|
---|
5 | import org.json.JSONArray;
|
---|
6 | import org.json.JSONException;
|
---|
7 | import org.json.JSONObject;
|
---|
8 |
|
---|
9 | /**
|
---|
10 | * 襍キ轤ケ縺ィ縺ェ繧九Μ繧ス繝シ繧ケ縺九i騾先ャ。逧�↓隍�焚繝ェ繝ウ繧ッ縺ァ邨らせ繝ェ繧ス繝シ繧ケ縺セ縺ァ謗・邯壹&繧後k荳縺、縺ョ繝代せ繧定ィ倩ソー縺吶k
|
---|
11 | *
|
---|
12 | * @author Yamaguchi
|
---|
13 | * @since 28.01.2014
|
---|
14 | * @version 29.01.2014
|
---|
15 | */
|
---|
16 | public class Path {
|
---|
17 |
|
---|
18 | /**
|
---|
19 | * 繝代せ縺ョ襍キ轤ケ縺ィ縺ェ繧九け繝ゥ繧ケ縺ョURI
|
---|
20 | */
|
---|
21 | private String startClass;
|
---|
22 | private int width;
|
---|
23 |
|
---|
24 | /**
|
---|
25 | * 繝代せ縺ョ襍キ轤ケ縺九i邨らせ縺ォ蜷代°縺」縺ヲ騾先ャ。逧�↓縺、縺ェ縺後k繧ッ繝ゥ繧ケ髢薙Μ繝ウ繧ッ縺ョ繝ェ繧ケ繝� |
---|
26 | */
|
---|
27 | private List<ClassLink> classLinks;
|
---|
28 |
|
---|
29 | public JSONObject toJSON() {
|
---|
30 | JSONObject obj = new JSONObject();
|
---|
31 | try {
|
---|
32 | obj.put("startClassURI", startClass);
|
---|
33 | obj.put("width", width);
|
---|
34 | if (classLinks != null && classLinks.size() != 0) {
|
---|
35 | JSONObject[] classLinkObjs = new JSONObject[classLinks.size()];
|
---|
36 | for (int i = 0; i < classLinks.size(); i++) {
|
---|
37 | classLinkObjs[i] = classLinks.get(i).toJSON();
|
---|
38 | }
|
---|
39 | //繧ィ繝ゥ繝シ縺悟�繧九�縺ァ荳玖ィ倥�騾壹j菫ョ豁」
|
---|
40 | JSONArray array = new JSONArray();
|
---|
41 | //JSONArray array = new JSONArray(classLinkObjs);
|
---|
42 | obj.put("classLinks", array);
|
---|
43 | }
|
---|
44 | } catch (JSONException e) {
|
---|
45 | // TODO Auto-generated catch block
|
---|
46 | e.printStackTrace();
|
---|
47 | System.out.println(e.toString());
|
---|
48 | }
|
---|
49 |
|
---|
50 | return obj;
|
---|
51 | }
|
---|
52 |
|
---|
53 | public String toJSONString(){
|
---|
54 | return toJSON().toString();
|
---|
55 | }
|
---|
56 |
|
---|
57 | public String toJSONString2(){
|
---|
58 | String json_str="";
|
---|
59 | json_str+="{\"startClassURI\":\""+ startClass+"\",";
|
---|
60 | json_str+="\"width\":"+width+",";
|
---|
61 |
|
---|
62 | if (classLinks != null && classLinks.size() != 0) {
|
---|
63 | json_str+="\"classLinks\":[";
|
---|
64 |
|
---|
65 | JSONObject[] classLinkObjs = new JSONObject[classLinks.size()];
|
---|
66 | for (int i = 0; i < classLinks.size(); i++) {
|
---|
67 | if(i>0){json_str += "," ;}
|
---|
68 | json_str+= classLinks.get(i).toJSONString2();
|
---|
69 | }
|
---|
70 | json_str+="]";
|
---|
71 | }
|
---|
72 | json_str+="}";
|
---|
73 |
|
---|
74 | return json_str;
|
---|
75 | }
|
---|
76 |
|
---|
77 |
|
---|
78 | public String getStartClass() {
|
---|
79 | return startClass;
|
---|
80 | }
|
---|
81 |
|
---|
82 | /*
|
---|
83 | * public String[] getProperties(){ return properties; }
|
---|
84 | *
|
---|
85 | * public String[] getObjectClasses(){ return objectClasses; }
|
---|
86 | *
|
---|
87 | * public Direction[] getDirections(){ return directions; }
|
---|
88 | */
|
---|
89 | public List<ClassLink> getClassLinks() {
|
---|
90 | return classLinks;
|
---|
91 | }
|
---|
92 |
|
---|
93 | public int getWidth() {
|
---|
94 | return width;
|
---|
95 | }
|
---|
96 |
|
---|
97 | public Path() {
|
---|
98 | }
|
---|
99 |
|
---|
100 | public Path(String startClass, List<ClassLink> classLinks, int width) {
|
---|
101 | this.startClass = startClass;
|
---|
102 | this.classLinks = classLinks;
|
---|
103 | this.width = width;
|
---|
104 | }
|
---|
105 |
|
---|
106 | public void setStartClass(String startClass) {
|
---|
107 | this.startClass = startClass;
|
---|
108 | }
|
---|
109 |
|
---|
110 | public void setClassLinks(List<ClassLink> classLinks) {
|
---|
111 | this.classLinks = classLinks;
|
---|
112 | }
|
---|
113 |
|
---|
114 | public void setWidth(int width) {
|
---|
115 | this.width = width;
|
---|
116 | }
|
---|
117 |
|
---|
118 | } |
---|