Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libUIComponent / src / org / gvsig / gui / beans / openfile / FileFilter.java @ 24558

History | View | Annotate | Download (340 Bytes)

1
package org.gvsig.gui.beans.openfile;
2

    
3
import java.io.File;
4

    
5
public abstract class FileFilter extends javax.swing.filechooser.FileFilter {
6

    
7
        /**
8
         * <p>Gets the default file extension, which will be
9
         * added to the selected file if its extension is not
10
         * valid.</p>
11
         * 
12
         * @return
13
         */
14
        public abstract String getDefaultExtension();
15
}