01: /**
02: *
03: */package newprocess.diagram.cust.annotations.wizards;
04:
05: import org.eclipse.swt.widgets.Event;
06:
07: /**
08: * @author sh
09: *
10: */
11: public class AnnotationWizard extends AbstractAnnotationWizard {
12: /**
13: * Constructor
14: */
15: public AnnotationWizard(String projectName) {
16: this .projectName = projectName;
17: }
18:
19: public void setTitle(String title) {
20: this .title = title;
21: }
22:
23: public void setFileName(String filename) {
24: this .fileName = filename;
25: }
26:
27: public void setWindowTitle(String windowTitle) {
28: this .windowTitle = windowTitle;
29: }
30:
31: public void setPlugin(String plugin) {
32: this .plugin = plugin;
33: }
34:
35: public void setIcon(String icon) {
36: this .icon = icon;
37: }
38:
39: public void setAnnotationType(String type) {
40: this .annotationType = type;
41: }
42:
43: public void handleEvent(Event event) {
44: }
45: }
|