use of org.eclipse.titan.log.viewer.views.msc.ui.core.TestCaseEnd in project titan.EclipsePlug-ins by eclipse.
the class MSCModel method testCaseEnd.
private MSCNode[] testCaseEnd(final String name, final String time, final int width, final int occurrence) {
// Create Test Case End
TestCaseEnd testCaseEnd = new TestCaseEnd(occurrence, name, width);
testCaseEnd.setName(name);
// Create and add Time Stamp
return new MSCNode[] { testCaseEnd, new TimeStampNode(occurrence, time) };
}
Aggregations