Loading de.ugoe.cs.swe.T3Q/src/de/ugoe/cs/swe/T3Q/UsageAnalyzer.java +6 −4 Original line number Diff line number Diff line Loading @@ -487,13 +487,15 @@ public class UsageAnalyzer implements Callable<TTCN3Usage> { } /** * Analyzes a ext constant definition. Currently just a skeleton * @param con The ext constant definition to be analyzed * Analyzes an external constant definition. Currently just a skeleton * @param con The external constant definition to be analyzed * @param output The TTCN3Usage to write the output to */ private void analyzeExtConstDef(ExtConstDef con, TTCN3Usage output) { addToOutput(output, "ExtConst"); //TODO everything String id = "ExtConst:"; if(con.getType().getPre() == null) id += "Non-Primitive"; else id += con.getType().getPre(); addNToOutput(output, id, con.getId().getIds().size()); } /** Loading Loading
de.ugoe.cs.swe.T3Q/src/de/ugoe/cs/swe/T3Q/UsageAnalyzer.java +6 −4 Original line number Diff line number Diff line Loading @@ -487,13 +487,15 @@ public class UsageAnalyzer implements Callable<TTCN3Usage> { } /** * Analyzes a ext constant definition. Currently just a skeleton * @param con The ext constant definition to be analyzed * Analyzes an external constant definition. Currently just a skeleton * @param con The external constant definition to be analyzed * @param output The TTCN3Usage to write the output to */ private void analyzeExtConstDef(ExtConstDef con, TTCN3Usage output) { addToOutput(output, "ExtConst"); //TODO everything String id = "ExtConst:"; if(con.getType().getPre() == null) id += "Non-Primitive"; else id += con.getType().getPre(); addNToOutput(output, id, con.getId().getIds().size()); } /** Loading