Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.library / org.gvsig.raster / org.gvsig.raster.lib / org.gvsig.raster.lib.buffer.impl / src / main / java / org / gvsig / raster / lib / buffer / impl / DefaultBufferNotification.java @ 43803

History | View | Annotate | Download (442 Bytes)

1
package org.gvsig.raster.lib.buffer.impl;
2

    
3
import org.gvsig.raster.lib.buffer.api.BufferNotification;
4
import org.gvsig.tools.observer.BaseNotification;
5

    
6

    
7
/**
8
 * @author fdiaz
9
 *
10
 */
11
public class DefaultBufferNotification extends BaseNotification implements BufferNotification {
12

    
13
    /**
14
     * @param type
15
     * @param values
16
     */
17
    public DefaultBufferNotification(String type, Object[] values) {
18
        super(type, values);
19
    }
20

    
21
}