Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_dataFile / src / org / gvsig / fmap / data / feature / file / FileExplorerParameters.java @ 22373

History | View | Annotate | Download (359 Bytes)

1
package org.gvsig.fmap.data.feature.file;
2

    
3
import java.io.File;
4

    
5
import org.gvsig.fmap.data.DataExplorerParameters;
6

    
7
public abstract class FileExplorerParameters implements DataExplorerParameters{
8
        protected File source;
9

    
10
        public void setSource(File source){
11
                this.source = source;
12
        }
13

    
14
        public File getSource(){
15
                return this.source;
16
        }
17

    
18
}