/plugins/ProjectViewer/branches/pv_2_0_3_patches/projectviewer/event/ProjectViewerListener.java
# · Java · 41 lines · 7 code · 7 blank · 27 comment · 0 complexity · f7f4e109cabeab1b29c2d2d5314a7650 MD5 · raw file
- /*
- * :tabSize=4:indentSize=4:noTabs=false:
- * :folding=explicit:collapseFolds=1:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program 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 General Public License for more detaProjectTreeSelectionListenerils.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
- package projectviewer.event;
- import java.util.EventListener;
- /**
- * A listener for {@link ProjectViewerEvent}s.
- *
- * @author Dale Anson, Marcelo Vanzin
- * @version $Id: ProjectViewerListener.java 6111 2003-03-02 21:33:56Z vanza $
- */
- public interface ProjectViewerListener extends EventListener {
- /** Notifies the changing of the active project. */
- public void projectLoaded(ProjectViewerEvent evt);
- /** Notifies the creation of a project. */
- public void projectAdded(ProjectViewerEvent evt);
- /** Notifies the removal of a project. */
- public void projectRemoved(ProjectViewerEvent evt);
- }