summaryrefslogtreecommitdiff
path: root/src/main/java/org/cristalise/gui/tabs/execution/Executor.java
blob: 8a083517df0a942b45799c132264d99e39c4b094 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.cristalise.gui.tabs.execution;

import javax.swing.JLabel;

import org.cristalise.kernel.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;
}