package org.openwfe.gpe;
import org.eclipse.swt.graphics.Image;
/**
*This class contains all the images needed for the palette
*/
public class FlowImages {
public static final Image gear = new Image(null, FlowPlugin.class.getResourceAsStream("images/gear.gif"));
public static final Image start = new Image(null, FlowPlugin.class.getResourceAsStream("images/start.gif"));
public static final Image end = new Image(null, FlowPlugin.class.getResourceAsStream("images/end.gif"));
public static final Image logic = new Image(null, FlowPlugin.class.getResourceAsStream("images/logic.gif"));
public static final Image participant = new Image(null, FlowPlugin.class.getResourceAsStream("images/buddy20.gif"));
public static final Image noimage = new Image(null, FlowPlugin.class.getResourceAsStream("images/noimage.gif"));
public static final Image inc = new Image(null, FlowPlugin.class.getResourceAsStream("images/inc20.gif"));
public static final Image save = new Image(null, FlowPlugin.class.getResourceAsStream("images/save16.gif"));
public static final Image restore = new Image(null, FlowPlugin.class.getResourceAsStream("images/restore20.gif"));
public static final Image log = new Image(null, FlowPlugin.class.getResourceAsStream("images/log.gif"));
public static final Image equals = new Image(null, FlowPlugin.class.getResourceAsStream("images/equals.gif"));
public static final Image greater = new Image(null, FlowPlugin.class.getResourceAsStream("images/greater.gif"));
public static final Image lesser = new Image(null, FlowPlugin.class.getResourceAsStream("images/lesser.gif"));
public static final Image defined = new Image(null, FlowPlugin.class.getResourceAsStream("images/defined.gif"));
public static final Image undefined = new Image(null, FlowPlugin.class.getResourceAsStream("images/undefined.gif"));
public static final Image subprocess = new Image(null, FlowPlugin.class.getResourceAsStream("images/sub.gif"));
public static final Image not = new Image(null, FlowPlugin.class.getResourceAsStream("images/not16.gif"));
public static final Image set = new Image(null, FlowPlugin.class.getResourceAsStream("images/set20.gif"));
public static final Image unset = new Image(null, FlowPlugin.class.getResourceAsStream("images/unset20.gif"));
public static final Image iterator = new Image(null, FlowPlugin.class.getResourceAsStream("images/iterator20.gif"));
public static final Image caseimage = new Image(null, FlowPlugin.class.getResourceAsStream("images/case20.gif"));
}
|