/*
* Copyright (C) 2001-2003 Robert MacGrogan
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* $Archive: SourceJammer$
* $FileName: SJClientAction.java$
* $FileID: 4666$
*
* Last change:
* $AuthorName: Rob MacGrogan$
* $Date: 4/23/03 5:05 PM$
* $Comment: Replaced GPL header with LGPL header.$
*/
package org.sourcejammer.client.plugin;
/**
* Title: $FileName: SJClientAction.java$
* @version $VerNum: 2$
* @author $AuthorName: Rob MacGrogan$<br><br>
*
* $Description: $<br>
* $KeyWordsOff: $<br><br>
*
* A plugin that will appear in the Tools|Plugins menu in the SourceJammer
* GUI client. You can implement this class and register it with the
* SJ client and have it perform any action you wish.<br<br>
*
* It is highly recommended that your plugins extend the SJClientActionAdapter
* class and not implement this interface directly.
*/
public interface SJClientAction extends SJClientPlugin{
public void actionPerformed(GUIContext context);
}
|