Source code: org/jext/project/ProjectManagement.java
1 /*
2 * 10/21/2001 - 15:41:12
3 * ProjectManagement.java
4 * Copyright (C) 2001 Matt Benson
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 package org.jext.project;
22
23
24 /**
25 * The interface which should be implemented by all Jext project management
26 * plugins. This has been made separate from <CODE>ProjectManager</CODE> so
27 * that the plugin class itself does not have to implement the much heavier
28 * <CODE>ProjectManager</CODE> interface.
29 *
30 * @author <a href="mailto:orangeherbert@users.sourceforge.net">Matt Benson</a>
31 */
32 public interface ProjectManagement
33 {
34
35 /**
36 * Returns the <CODE>String</CODE> to use as a description of this
37 * <CODE>ProjectManagement</CODE> in a list.
38 */
39 public String getLabel();
40
41 /**
42 * Returns the <CODE>ProjectManager</CODE> for this
43 * <CODE>ProjectManagement</CODE>.
44 */
45 public ProjectManager getProjectManager();
46
47 }//end class ProjectManagement