summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-08-28 16:27:12 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-08-28 16:27:12 +0200
commitee9d405bc917be3f596ccd2ffd2d7ddc01687d31 (patch)
treef9287d5bc3cd50f7251e459751e49043d0e54525 /instance-calculator/src/VHDLComponent.java
parent2a13a7957f08429c8b5c905032b26c51de57885f (diff)
Starts the Instance Calculator
Diffstat (limited to 'instance-calculator/src/VHDLComponent.java')
-rw-r--r--instance-calculator/src/VHDLComponent.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/instance-calculator/src/VHDLComponent.java b/instance-calculator/src/VHDLComponent.java
new file mode 100644
index 0000000..29261a7
--- /dev/null
+++ b/instance-calculator/src/VHDLComponent.java
@@ -0,0 +1,21 @@
+import java.util.*;
+
+public class VHDLComponent
+{
+ private static final Map<String, VHDLComponent> FROM_ID;
+
+ static
+ {
+ FROM_ID = new HashMap<String, VHDLComponent>();
+ }
+
+ private final Map<String, String> port_map;
+ private final String id;
+
+ private VHDLComponent (final String id)
+ {
+ this.id = id;
+
+ port_map = new HashMap<String, String>();
+ }
+}