diff options
Diffstat (limited to 'source/com/c2kernel/gui/tabs/execution/Executor.java')
| -rwxr-xr-x | source/com/c2kernel/gui/tabs/execution/Executor.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source/com/c2kernel/gui/tabs/execution/Executor.java b/source/com/c2kernel/gui/tabs/execution/Executor.java new file mode 100755 index 0000000..dd185b4 --- /dev/null +++ b/source/com/c2kernel/gui/tabs/execution/Executor.java @@ -0,0 +1,21 @@ +package com.c2kernel.gui.tabs.execution;
+
+import javax.swing.JLabel;
+
+import com.c2kernel.entity.agent.Job;
+
+/**************************************************************************
+ *
+ * $Revision: 1.1 $
+ * $Date: 2003/09/25 10:28:02 $
+ *
+ * Copyright (C) 2003 CERN - European Organization for Nuclear Research
+ * All rights reserved.
+ **************************************************************************/
+
+public interface Executor {
+
+ public String toString();
+
+ public void execute(Job job, JLabel status) throws Exception;
+}
|
