| summaryrefslogtreecommitdiff |
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-07-20 16:11:59 +0200 |
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-07-20 16:11:59 +0200 |
| commit | 44d19480a10924eac2191308d8842a4df1657167 (patch) | |
| tree | a48dd18ccc613ea9acaabe7de1cca7f2f03c1580 /ast-to-instr/src/VHDLArchitecture.java | |
| parent | 1ef39e828479f0d82753f3912b7c5d85e49d708c (diff) | |
Working on the IF nodes + Childrens -> children.
Diffstat (limited to 'ast-to-instr/src/VHDLArchitecture.java')
| -rw-r--r-- | ast-to-instr/src/VHDLArchitecture.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ast-to-instr/src/VHDLArchitecture.java b/ast-to-instr/src/VHDLArchitecture.java index 1865e7a..5b5f033 100644 --- a/ast-to-instr/src/VHDLArchitecture.java +++ b/ast-to-instr/src/VHDLArchitecture.java @@ -236,7 +236,7 @@ public class VHDLArchitecture extends ParsableXML { final Collection<ParsableXML> result; final NodeList signals; - final int childrens_count; + final int children_count; result = new ArrayList<ParsableXML>(); @@ -247,9 +247,9 @@ public class VHDLArchitecture extends ParsableXML XPathConstants.NODESET ); - childrens_count = signals.getLength(); + children_count = signals.getLength(); - for (int i = 0; i < childrens_count; ++i) + for (int i = 0; i < children_count; ++i) { result.add(new VHDLSignal(local_id, signals.item(i))); } @@ -265,7 +265,7 @@ public class VHDLArchitecture extends ParsableXML { final Collection<ParsableXML> result; final NodeList processes; - final int childrens_count; + final int children_count; result = new ArrayList<ParsableXML>(); @@ -276,9 +276,9 @@ public class VHDLArchitecture extends ParsableXML XPathConstants.NODESET ); - childrens_count = processes.getLength(); + children_count = processes.getLength(); - for (int i = 0; i < childrens_count; ++i) + for (int i = 0; i < children_count; ++i) { result.add(new VHDLProcess(local_id, processes.item(i))); } @@ -294,7 +294,7 @@ public class VHDLArchitecture extends ParsableXML { final Collection<ParsableXML> result; final NodeList components; - final int childrens_count; + final int children_count; result = new ArrayList<ParsableXML>(); @@ -305,9 +305,9 @@ public class VHDLArchitecture extends ParsableXML XPathConstants.NODESET ); - childrens_count = components.getLength(); + children_count = components.getLength(); - for (int i = 0; i < childrens_count; ++i) + for (int i = 0; i < children_count; ++i) { result.add(new VHDLComponent(local_id, components.item(i))); } |


