Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.ui / src / main / java / org / gvsig / gui / beans / listeners / BeanListener.java @ 40561

History | View | Annotate | Download (2.18 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
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 3
9
 * of the License, or (at your option) 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., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/* CVS MESSAGES:
25
*
26
* $Id: BeanListener.java 13136 2007-08-20 08:38:34Z evercher $
27
* $Log$
28
* Revision 1.1  2007-08-20 08:34:46  evercher
29
* He fusionado LibUI con LibUIComponents
30
*
31
* Revision 1.2  2006/07/03 09:29:09  jaume
32
* javadoc
33
*
34
* Revision 1.1  2006/03/22 11:18:29  jaume
35
* *** empty log message ***
36
*
37
* Revision 1.4  2006/02/28 15:25:14  jaume
38
* *** empty log message ***
39
*
40
* Revision 1.2.2.3  2006/01/31 16:25:24  jaume
41
* correcciones de bugs
42
*
43
* Revision 1.3  2006/01/26 16:07:14  jaume
44
* *** empty log message ***
45
*
46
* Revision 1.2.2.1  2006/01/26 12:59:33  jaume
47
* 0.5
48
*
49
* Revision 1.2  2006/01/24 14:36:33  jaume
50
* This is the new version
51
*
52
* Revision 1.1.2.1  2006/01/10 13:11:38  jaume
53
* *** empty log message ***
54
*
55
* Revision 1.1.2.2  2006/01/02 18:08:01  jaume
56
* Tree de estilos
57
*
58
* Revision 1.1.2.1  2005/12/30 08:56:19  jaume
59
* *** empty log message ***
60
*
61
*
62
*/
63
package org.gvsig.gui.beans.listeners;
64

    
65
/**
66
 * Defines an object which listens for changes in the value produced by a bean.
67
 *
68
 * @author jaume dominguez faus
69
 */
70
public interface BeanListener {
71
    /**
72
     * Invoked when the target of the listener has changed its value.
73
     * @param value, the new value obtained from the target.
74
     */
75
    public void beanValueChanged(Object value);
76
}