Statistics
| Revision:

gvsig-3d / 2.1 / branches / org.gvsig.view3d_vector_and_extrusion_2.3 / org.gvsig.view3d / org.gvsig.view3d / org.gvsig.view3d.swing / org.gvsig.view3d.swing.impl / src / main / java / org / gvsig / view3d / swing / impl / data / ConfigurableFileStore.java @ 708

History | View | Annotate | Download (471 Bytes)

1
package org.gvsig.view3d.swing.impl.data;
2

    
3
import gov.nasa.worldwind.cache.FileStore;
4

    
5
import java.io.File;
6

    
7
/**
8
 * This class represents the configurable {@link FileStore} 
9
 * 
10
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
11
 *
12
 */
13
public interface ConfigurableFileStore extends FileStore{
14
    
15
    /**
16
     * Set new write location to file store
17
     * 
18
     * @param writeLocation
19
     */
20
    public void setWriteLocation(File writeLocation);
21
    
22
}
23