JAL-1432 updated copyright notices
[jalview.git] / src / jalview / gui / JalviewChangeSupport.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1)
3  * Copyright (C) 2014 The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  * The Jalview Authors are detailed in the 'AUTHORS' file.
18  */
19 package jalview.gui;
20
21 import java.beans.PropertyChangeEvent;
22 import java.beans.PropertyChangeListener;
23
24 public class JalviewChangeSupport implements PropertyChangeListener
25 {
26   public void propertyChange(PropertyChangeEvent evt)
27   {
28     // Handle change events - most are simply routed to other sources
29     changeSupport.firePropertyChange(evt);
30   }
31
32   /**
33    * change listeners are notified of changes to resources so they can update
34    * their state. E.g. - the 'services' property notifies when the available set
35    * of web service endpoints have changed.
36    */
37   private java.beans.PropertyChangeSupport changeSupport = new java.beans.PropertyChangeSupport(
38           this);
39
40   /**
41    * @param propertyName
42    * @param listener
43    * @see java.beans.PropertyChangeSupport#addPropertyChangeListener(java.lang.String,
44    *      java.beans.PropertyChangeListener)
45    */
46   public void addJalviewPropertyChangeListener(String propertyName,
47           PropertyChangeListener listener)
48   {
49     changeSupport.addPropertyChangeListener(propertyName, listener);
50   }
51
52   /**
53    * @param listener
54    * @see java.beans.PropertyChangeSupport#addPropertyChangeListener(java.beans.PropertyChangeListener)
55    */
56   public void addJalviewPropertyChangeListener(
57           PropertyChangeListener listener)
58   {
59     changeSupport.addPropertyChangeListener(listener);
60   }
61
62   /*
63    * @param propertyName
64    * 
65    * @param oldValue
66    * 
67    * @param newValue
68    * 
69    * @see java.beans.PropertyChangeSupport#firePropertyChange(java.lang.String,
70    * java.lang.Object, java.lang.Object) public void firePropertyChange(String
71    * propertyName, Object oldValue, Object newValue) {
72    * changeSupport.firePropertyChange(propertyName, oldValue, newValue); }
73    */
74
75   /**
76    * @param propertyName
77    * @param listener
78    * @see java.beans.PropertyChangeSupport#removePropertyChangeListener(java.lang.String,
79    *      java.beans.PropertyChangeListener)
80    */
81   public void removeJalviewPropertyChangeListener(String propertyName,
82           PropertyChangeListener listener)
83   {
84     changeSupport.removePropertyChangeListener(propertyName, listener);
85   }
86
87 }