more web work
All checks were successful
studiorailgun/trpg/pipeline/head This commit looks good

This commit is contained in:
austin 2024-12-30 15:49:39 -05:00
parent 72e41f231c
commit 69dd00dae9
6 changed files with 63 additions and 3 deletions

View File

@ -0,0 +1,10 @@
{
"tag" : "ambiguity",
"nodes" : {
"0" : {
"comment" : "The concept of ambiguity",
"id" : 0,
"name" : "ambiguity"
}
}
}

View 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"
]
}

View File

@ -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"

View File

@ -0,0 +1,6 @@
{
"tag" : "physics",
"dependencies" : [
]
}

View File

@ -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"
]
}

View File

@ -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;
}
}