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

Last change on this file since 434 was 434, checked in by sherbold, 12 years ago
  • renamed packages to fit QUEST project structure
  • 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.