blob: 6fbde1742c15af6ad7777d9bc95daf0afd9aa950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 {
@Override
public String toString();
public void execute(Job job, JLabel status) throws Exception;
}
|