/plugins/ProjectViewer/tags/pv_2_9_3/projectviewer/event/ProjectUpdate.java

# · Java · 93 lines · 47 code · 13 blank · 33 comment · 0 complexity · b4a150cd8400da59fb7fd7b93908f2cd MD5 · raw file

  1. /*
  2. * :tabSize=4:indentSize=4:noTabs=true:
  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 details.
  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.Collection;
  21. import org.gjt.sp.jedit.EBMessage;
  22. import projectviewer.vpt.VPTFile;
  23. import projectviewer.vpt.VPTProject;
  24. /**
  25. * A project update message sent on the Edit Bus.
  26. *
  27. * @author Marcelo Vanzin
  28. * @version $Id: ProjectUpdate.java 14423 2009-01-21 05:34:28Z vanza $
  29. * @since PV 3.0.0
  30. */
  31. public final class ProjectUpdate extends EBMessage
  32. {
  33. public static enum Type
  34. {
  35. /** Update for when files have been added to a project. */
  36. FILES_CHANGED,
  37. /** Update for when the project's properties have changed. */
  38. PROPERTIES_CHANGED;
  39. }
  40. private final Type type;
  41. private final Collection<VPTFile> added;
  42. private final Collection<VPTFile> removed;
  43. /** Construct a new message with type FILES_CHANGED. */
  44. public ProjectUpdate(VPTProject p,
  45. Collection<VPTFile> added,
  46. Collection<VPTFile> removed)
  47. {
  48. super(p);
  49. this.added = added;
  50. this.removed = removed;
  51. this.type = Type.FILES_CHANGED;
  52. }
  53. /** Construct a new message with type PROPERTIES_CHANGED. */
  54. public ProjectUpdate(VPTProject p) {
  55. super(p);
  56. this.type = Type.PROPERTIES_CHANGED;
  57. this.added = null;
  58. this.removed = null;
  59. }
  60. /** @return The affected project. */
  61. public VPTProject getProject()
  62. {
  63. return (VPTProject) getSource();
  64. }
  65. /** @return The event type of this message. */
  66. public Type getType()
  67. {
  68. return type;
  69. }
  70. /** @return The list of added files (may be null). */
  71. public Collection<VPTFile> getAddedFiles()
  72. {
  73. return added;
  74. }
  75. /** @return The list of removed files (may be null). */
  76. public Collection<VPTFile> getRemovedFiles()
  77. {
  78. return removed;
  79. }
  80. }