summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-08-29 13:54:43 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-08-29 13:54:43 +0200
commit35e6857fb09b006da9f8cc3f59f239f078cc69a1 (patch)
tree9c049bc4a16a1202b1dc18ccd79ecfd8557f7dcc /instance-calculator/src/VHDLArchitecture.java
parentf1dfb1eb04a705521238dba64e09bb9ecdea794f (diff)
Still working on the implementation.
Diffstat (limited to 'instance-calculator/src/VHDLArchitecture.java')
-rw-r--r--instance-calculator/src/VHDLArchitecture.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/instance-calculator/src/VHDLArchitecture.java b/instance-calculator/src/VHDLArchitecture.java
index 2834ab3..7f3be10 100644
--- a/instance-calculator/src/VHDLArchitecture.java
+++ b/instance-calculator/src/VHDLArchitecture.java
@@ -23,6 +23,7 @@ public class VHDLArchitecture
final String arch_id
)
{
+ /* TODO */
return false;
}
@@ -32,6 +33,7 @@ public class VHDLArchitecture
final String e_id
)
{
+ /* TODO */
return false;
}
@@ -40,6 +42,8 @@ public class VHDLArchitecture
private final List<String> components;
private final String id;
+ private VHDLEntity entity;
+
private VHDLArchitecture (final String id)
{
this.id = id;
@@ -47,4 +51,9 @@ public class VHDLArchitecture
processes = new ArrayList<String>();
components = new ArrayList<String>();
}
+
+ public VHDLEntity get_entity ()
+ {
+ return entity;
+ }
}