Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.swing / org.gvsig.tools.swing.api / src / main / java / org / gvsig / tools / swing / api / ChangeListenerSupport.java @ 1746

History | View | Annotate | Download (686 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.tools.swing.api;
7

    
8
import java.awt.event.ActionEvent;
9
import java.awt.event.ActionListener;
10
import javax.swing.event.ChangeListener;
11

    
12
/**
13
 *
14
 * @author jjdelcerro
15
 */
16
public interface ChangeListenerSupport {
17
    
18
    public void addChangeListener(ChangeListener listener);
19
    
20
    public ChangeListener[] getChangeListeners();
21

    
22
    public void removeChangeListener(ChangeListener listener);
23

    
24
    public void removeAllChangeListener();
25

    
26
    public boolean hasChangeListeners();    
27
}