source: trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/swt/AbstractInsertEventComposite.java @ 230

Last change on this file since 230 was 230, checked in by sherbold, 13 years ago
  • extended SWT-GUI with dialogs for editing sequences and adding of assertions

Comment for Revision 229 (comment missing due to Subversive bug):

  • changed de.ugoe.cs.eventbench.assertions.FileEqualsReplay? and de.ugoe.cs.eventbench.assertions.TextEqualsReplay? such that the actual and expected values are now defined via the constructor
  • changed storage method for targets that are found during the parsing of MFC usage log files. If the sequences are stored in the variable "seqsName" the targets are stored in the variable "seqsName_targets"
  • adapted classes in de.ugoe.cs.eventbench.swing to the changes above
  • marked the classes in de.ugoe.cs.eventbench.swing as deprecated as the Swing GUI will not be part of further maintenance. Use the SWT GUI instead.
  • Property svn:mime-type set to text/plain
File size: 474 bytes
Line 
1package de.ugoe.cs.eventbench.swt;
2
3import java.util.SortedSet;
4
5import org.eclipse.swt.widgets.Composite;
6
7import de.ugoe.cs.eventbench.data.Event;
8
9abstract public class AbstractInsertEventComposite extends Composite {
10
11        protected SortedSet<String> targets;
12       
13        public AbstractInsertEventComposite(Composite parent, int style, SortedSet<String> targets) {
14                super(parent, style);
15                this.targets = targets;
16        }
17       
18        public abstract Event<?> getEvent();
19
20}
Note: See TracBrowser for help on using the repository browser.