Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / DataExplorerType.java @ 24496

History | View | Annotate | Download (491 Bytes)

1
package org.gvsig.fmap.dal;
2

    
3
/**
4
 * This interface describes a DataExplorerType 
5
 * by providing its name and description.
6
 */
7
public interface DataExplorerType {
8

    
9
        /**
10
         * Returns the name of this DataExplorerType
11
         * 
12
         * @return String containing the name of this DataExplorerType
13
         */
14
        public String getName();
15

    
16
        /**
17
         * Returns the description of this DataExplorerType
18
         * 
19
         * @return String containing the description of this DataExplorerType
20
         */
21
        public String getDescription();
22

    
23
}