This commit is contained in:
parent
72e41f231c
commit
69dd00dae9
10
data/webs/philosophy/knowledge/ambiguity.json
Normal file
10
data/webs/philosophy/knowledge/ambiguity.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"tag" : "ambiguity",
|
||||
"nodes" : {
|
||||
"0" : {
|
||||
"comment" : "The concept of ambiguity",
|
||||
"id" : 0,
|
||||
"name" : "ambiguity"
|
||||
}
|
||||
}
|
||||
}
|
||||
23
data/webs/philosophy/knowledge/knowledge.json
Normal file
23
data/webs/philosophy/knowledge/knowledge.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"tag" : "knowledge",
|
||||
"nodes" : {
|
||||
"0" : {
|
||||
"comment" : "The concept of knowledge",
|
||||
"id" : 0,
|
||||
"name" : "knowledge"
|
||||
},
|
||||
"1" : {
|
||||
"comment" : "The concept of the known",
|
||||
"id" : 1,
|
||||
"name" : "known"
|
||||
},
|
||||
"2" : {
|
||||
"comment" : "The concept of the unknown",
|
||||
"id" : 2,
|
||||
"name" : "unknown"
|
||||
}
|
||||
},
|
||||
"dependencies" : [
|
||||
"./data/webs/philosophy/knowledge/ambiguity.json"
|
||||
]
|
||||
}
|
||||
@ -2,6 +2,7 @@
|
||||
"tag": "philosophy",
|
||||
"dependencies" : [
|
||||
"./data/webs/philosophy/concept.json",
|
||||
"./data/webs/philosophy/knowledge/knowledge.json",
|
||||
"./data/webs/philosophy/person/person.json",
|
||||
"./data/webs/philosophy/person/self.json",
|
||||
"./data/webs/philosophy/quality/quality.json"
|
||||
|
||||
6
data/webs/physics/physics.json
Normal file
6
data/webs/physics/physics.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"tag" : "physics",
|
||||
"dependencies" : [
|
||||
|
||||
]
|
||||
}
|
||||
@ -17,7 +17,8 @@
|
||||
}
|
||||
},
|
||||
"dependencies" : [
|
||||
"./data/webs/philosophy/philosophy.json",
|
||||
"./data/webs/linguistics/linguistics.json",
|
||||
"./data/webs/philosophy/philosophy.json"
|
||||
"./data/webs/physics/physics.json"
|
||||
]
|
||||
}
|
||||
@ -20,6 +20,11 @@ public class Node {
|
||||
*/
|
||||
String name;
|
||||
|
||||
/**
|
||||
* An optional comment on a node
|
||||
*/
|
||||
String comment;
|
||||
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
@ -31,16 +36,30 @@ public class Node {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Gets the name of the node
|
||||
* @return The name
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Gets the id of the node
|
||||
* @return The id
|
||||
*/
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the comment on the node
|
||||
* @return The comment
|
||||
*/
|
||||
public String getComment(){
|
||||
return comment;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user