]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/SlcImages.java
Remove old license headers
[gpl/argeo-slc.git] / org.argeo.slc.client.ui / src / org / argeo / slc / client / ui / SlcImages.java
1 package org.argeo.slc.client.ui;
2
3 import static org.argeo.slc.client.ui.ClientUiPlugin.getImageDescriptor;
4 import static org.argeo.slc.client.ui.ClientUiPlugin.img;
5
6 import org.eclipse.jface.resource.ImageDescriptor;
7 import org.eclipse.swt.graphics.Image;
8
9 /** Shared images. */
10 public class SlcImages {
11 public final static Image AGENT = img("icons/agent.gif");
12 public final static Image AGENT_FACTORY = img("icons/agentFactory.gif");
13 public final static Image MODULE = img("icons/module.png");
14 public final static Image MODULE_STOPPED = img("icons/module_stopped.gif");
15 public final static Image FOLDER = img("icons/folder.gif");
16 public final static Image MY_RESULTS_FOLDER = img("icons/myResult.png");
17 public final static Image RENAME = img("icons/rename.png");
18 public final static Image FLOW = img("icons/flow.png");
19 public final static Image PROCESSES = img("icons/processes.gif");
20 public final static Image PASSED = img("icons/passed.gif");
21 public final static Image ERROR = img("icons/error.gif");
22 public final static Image LAUNCH = img("icons/launch.gif");
23 public final static Image RELAUNCH = img("icons/relaunch.gif");
24 public final static Image KILL = img("icons/kill.png");
25 public final static Image REMOVE_ONE = img("icons/remove_one.gif");
26 public final static Image REMOVE_ALL = img("icons/removeAll.png");
27 public final static Image EXECUTION_SPECS = img("icons/executionSpecs.gif");
28 public final static Image EXECUTION_SPEC = img("icons/executionSpec.gif");
29 public final static Image EXECUTION_SPEC_ATTRIBUTE = img("icons/executionSpecAttribute.gif");
30 public final static Image CHOICES = img("icons/choices.gif");
31 public final static Image PROCESS_ERROR = img("icons/process_error.png");
32 public final static Image PROCESS_SCHEDULED = img("icons/process_scheduled.gif");
33 public final static Image PROCESS_RUNNING = img("icons/process_running.png");
34 public final static Image PROCESS_COMPLETED = img("icons/process_completed.png");
35
36 // Decorators
37 public final static ImageDescriptor EXECUTION_ERROR = getImageDescriptor("icons/executionError.gif");
38 public final static ImageDescriptor EXECUTION_PASSED = getImageDescriptor("icons/executionPassed.gif");
39
40 }