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; }