01: package org.openwfe.gpe;
02:
03: import org.eclipse.swt.graphics.Image;
04:
05: /**
06: *This class contains all the images needed for the palette
07: */
08: public class FlowImages {
09:
10: public static final Image gear = new Image(null, FlowPlugin.class
11: .getResourceAsStream("images/gear.gif"));
12: public static final Image start = new Image(null, FlowPlugin.class
13: .getResourceAsStream("images/start.gif"));
14: public static final Image end = new Image(null, FlowPlugin.class
15: .getResourceAsStream("images/end.gif"));
16: public static final Image logic = new Image(null, FlowPlugin.class
17: .getResourceAsStream("images/logic.gif"));
18: public static final Image participant = new Image(null,
19: FlowPlugin.class.getResourceAsStream("images/buddy20.gif"));
20: public static final Image noimage = new Image(null,
21: FlowPlugin.class.getResourceAsStream("images/noimage.gif"));
22: public static final Image inc = new Image(null, FlowPlugin.class
23: .getResourceAsStream("images/inc20.gif"));
24: public static final Image save = new Image(null, FlowPlugin.class
25: .getResourceAsStream("images/save16.gif"));
26: public static final Image restore = new Image(null,
27: FlowPlugin.class
28: .getResourceAsStream("images/restore20.gif"));
29: public static final Image log = new Image(null, FlowPlugin.class
30: .getResourceAsStream("images/log.gif"));
31: public static final Image equals = new Image(null, FlowPlugin.class
32: .getResourceAsStream("images/equals.gif"));
33: public static final Image greater = new Image(null,
34: FlowPlugin.class.getResourceAsStream("images/greater.gif"));
35: public static final Image lesser = new Image(null, FlowPlugin.class
36: .getResourceAsStream("images/lesser.gif"));
37: public static final Image defined = new Image(null,
38: FlowPlugin.class.getResourceAsStream("images/defined.gif"));
39:
40: public static final Image undefined = new Image(null,
41: FlowPlugin.class
42: .getResourceAsStream("images/undefined.gif"));
43:
44: public static final Image subprocess = new Image(null,
45: FlowPlugin.class.getResourceAsStream("images/sub.gif"));
46: public static final Image not = new Image(null, FlowPlugin.class
47: .getResourceAsStream("images/not16.gif"));
48: public static final Image set = new Image(null, FlowPlugin.class
49: .getResourceAsStream("images/set20.gif"));
50: public static final Image unset = new Image(null, FlowPlugin.class
51: .getResourceAsStream("images/unset20.gif"));
52: public static final Image iterator = new Image(null,
53: FlowPlugin.class
54: .getResourceAsStream("images/iterator20.gif"));
55: public static final Image caseimage = new Image(null,
56: FlowPlugin.class.getResourceAsStream("images/case20.gif"));
57:
58: }
|