]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcImages.java
Work on modular distributions - change lazy init policies, add observer on the catego...
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui / src / main / java / org / argeo / slc / client / ui / SlcImages.java
index 18f4b944fce4712ffd28cf2bc0f4ec95d9bf42e9..d881f0ec8c9e0b54ee1862700b054eacc91f2e71 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007-2012 Mathieu Baudier
+ * Copyright (C) 2007-2012 Argeo GmbH
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  */
 package org.argeo.slc.client.ui;
 
+import static org.argeo.slc.client.ui.ClientUiPlugin.getImageDescriptor;
 import static org.argeo.slc.client.ui.ClientUiPlugin.img;
 
+import org.eclipse.jface.resource.ImageDescriptor;
 import org.eclipse.swt.graphics.Image;
 
 /** Shared images. */
@@ -26,6 +28,8 @@ public class SlcImages {
        public final static Image MODULE = img("icons/module.png");
        public final static Image MODULE_STOPPED = img("icons/module_stopped.gif");
        public final static Image FOLDER = img("icons/folder.gif");
+       public final static Image MY_RESULTS_FOLDER = img("icons/myResult.png");
+       public final static Image RENAME = img("icons/rename.png");
        public final static Image FLOW = img("icons/flow.png");
        public final static Image PROCESSES = img("icons/processes.gif");
        public final static Image PASSED = img("icons/passed.gif");
@@ -43,4 +47,9 @@ public class SlcImages {
        public final static Image PROCESS_SCHEDULED = img("icons/process_scheduled.gif");
        public final static Image PROCESS_RUNNING = img("icons/process_running.png");
        public final static Image PROCESS_COMPLETED = img("icons/process_completed.png");
+
+       // Decorators
+       public final static ImageDescriptor EXECUTION_ERROR = getImageDescriptor("icons/executionError.gif");
+       public final static ImageDescriptor EXECUTION_PASSED = getImageDescriptor("icons/executionPassed.gif");
+
 }