/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

  1. /*
  2. * :tabSize=4:indentSize=4:noTabs=false:
  3. * :folding=explicit:collapseFolds=1:
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more detaProjectTreeSelectionListenerils.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. package projectviewer.event;
  20. import java.util.EventListener;
  21. /**
  22. * A listener for {@link ProjectViewerEvent}s.
  23. *
  24. * @author Dale Anson, Marcelo Vanzin
  25. * @version $Id: ProjectViewerListener.java 6111 2003-03-02 21:33:56Z vanza $
  26. */
  27. public interface ProjectViewerListener extends EventListener {
  28. /** Notifies the changing of the active project. */
  29. public void projectLoaded(ProjectViewerEvent evt);
  30. /** Notifies the creation of a project. */
  31. public void projectAdded(ProjectViewerEvent evt);
  32. /** Notifies the removal of a project. */
  33. public void projectRemoved(ProjectViewerEvent evt);
  34. }