Loading plugins/org.etsi.mts.tdl.tx/src/org/etsi/mts/tdl/formatting2/TDLtxFormatter.java +17 −0 Original line number Diff line number Diff line Loading @@ -323,6 +323,23 @@ public class TDLtxFormatter extends AbstractJavaFormatter { } protected void format(org.etsi.mts.tdl.TestDescription e, IFormattableDocument doc) { for (Annotation a : e.getAnnotation()) { doc.surround(a, p->p.newLine()); // doc.append(a, p->p.noIndentation()); doc.format(a); // doc.prepend(a, p->p.newLine()); } for (TestObjective a : e.getTestObjective()) { doc.append(a, p->p.newLine()); // doc.append(a, p->p.noIndentation()); doc.format(a); } for (Comment c : e.getComment()) { doc.append(c, p->p.newLine()); // doc.append(c, p->p.noIndentation()); doc.format(c); } for (EObject m : e.eContents()) { doc.format(m); } Loading Loading
plugins/org.etsi.mts.tdl.tx/src/org/etsi/mts/tdl/formatting2/TDLtxFormatter.java +17 −0 Original line number Diff line number Diff line Loading @@ -323,6 +323,23 @@ public class TDLtxFormatter extends AbstractJavaFormatter { } protected void format(org.etsi.mts.tdl.TestDescription e, IFormattableDocument doc) { for (Annotation a : e.getAnnotation()) { doc.surround(a, p->p.newLine()); // doc.append(a, p->p.noIndentation()); doc.format(a); // doc.prepend(a, p->p.newLine()); } for (TestObjective a : e.getTestObjective()) { doc.append(a, p->p.newLine()); // doc.append(a, p->p.noIndentation()); doc.format(a); } for (Comment c : e.getComment()) { doc.append(c, p->p.newLine()); // doc.append(c, p->p.noIndentation()); doc.format(c); } for (EObject m : e.eContents()) { doc.format(m); } Loading