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