summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/gui/tabs/execution/Executor.java
blob: dd185b44c54760a5ca5e5c7c529cddf2f960d20f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;    
}