Statistics
| Revision:

gvsig-raster / org.gvsig.raster.tools / trunk / templates / examples / org.gvsig.raster.roimask / org.gvsig.raster.roimask.lib / org.gvsig.raster.roimask.lib.api / src / main / java / org / gvsig / raster / roimask / lib / ROIMaskService.java @ 1843

History | View | Annotate | Download (835 Bytes)

1
package org.gvsig.raster.roimask.lib;
2

    
3
import java.util.Date;
4

    
5
/**
6
 * Represents a Raster element.
7
 * 
8
 * @author gvSIG team
9
 * @version $Id$
10
 */
11
public interface ROIMaskService {
12

    
13
    /**
14
     * Returns the Raster's message.
15
     * 
16
     * @return the message associated to a TaskWithoutPreviewService
17
     * @throws ROIMaskMessageException
18
     *             if there is an error getting the Raster's message
19
     */
20
    public String getMessage() throws ROIMaskMessageException;
21

    
22
    /**
23
     * Returns the {@link ROIMaskManager}
24
     * 
25
     * @return {@link ROIMaskManager}
26
     * @see {@link ROIMaskManager}
27
     */
28
    public ROIMaskManager getManager();
29

    
30
    /**
31
     * Returns the Raster's creation date.
32
     * 
33
     * @return the creation date associated to a TaskWithoutPreviewService
34
     */
35
    public Date getDate();
36

    
37
}