source: trunk/quest-ui-swt/src/main/java/de/ugoe/cs/quest/ui/swt/AbstractInsertEventComposite.java @ 526

Last change on this file since 526 was 526, checked in by sherbold, 12 years ago
  • intial commit of quest-runner and quest-ui-swt. Both projects contain components that were moved from quest-ui-core. The quest-runner is responsible for the execution of the QUEST application. The quest-ui-swt contains an SWT GUI.
  • Property svn:mime-type set to text/plain
File size: 472 bytes
Line 
1package de.ugoe.cs.quest.ui.swt;
2
3import java.util.SortedSet;
4
5import org.eclipse.swt.widgets.Composite;
6
7import de.ugoe.cs.quest.eventcore.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.