summaryrefslogtreecommitdiff
path: root/src/main/java/net/transit/network/system/Node.java
diff options
context:
space:
mode:
authorKyle Gunger <corechg@gmail.com>2020-04-16 15:04:40 -0400
committerKyle Gunger <corechg@gmail.com>2020-04-16 15:04:40 -0400
commit5759e17941c537b7c73867d384cb9e22ce6f2b52 (patch)
tree1cb4cdb245ef9f0eefb85e31cd5514dc746973ce /src/main/java/net/transit/network/system/Node.java
parentbbfbb508919459d9885bd9d690c1c483e7e3f70b (diff)
[Update] Version 0.8.1
+ Change domain to an actual website.
Diffstat (limited to 'src/main/java/net/transit/network/system/Node.java')
-rw-r--r--src/main/java/net/transit/network/system/Node.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/main/java/net/transit/network/system/Node.java b/src/main/java/net/transit/network/system/Node.java
deleted file mode 100644
index 6a661f3..0000000
--- a/src/main/java/net/transit/network/system/Node.java
+++ /dev/null
@@ -1,45 +0,0 @@
-package net.transit.network.system;
-
-/**
- * @author Kyle Gunger
- * @apiNote A node inside or outside a system. Provides acceptors and providers to other nodes.
- */
-public interface Node
-{
-
- /**Returns the groupIDs of groups the node interacts with
- *
- * @return String[]
- */
- public String[] groupsProvided();
-
-
- /**Get the system managing the node or {@code null} if there isn't one
- *
- * @return System
- */
- public System getSystem();
-
-
- /** Get the data of one of the TypeGroups the Node supports
- *
- * @param groupID
- * @return
- */
- public Object getData(String groupID);
-
-
- /** Set the group data for the node
- *
- * @param dat
- * @param groupID
- */
- public void setData(Object dat, String groupID);
-
-
- /** Get the nodes that this node is connected to
- *
- * @return Node[]
- */
- public Node[] getConnections();
-}