uci.uml.ui
Class ArgoFileFilter

java.lang.Object
  |
  +--javax.swing.filechooser.FileFilter
        |
        +--uci.uml.ui.ArgoFileFilter

public class ArgoFileFilter
extends FileFilter


Constructor Summary
ArgoFileFilter()
           
 
Method Summary
 boolean accept(File f)
          Return true if this file should be shown in the directory pane, false if it shouldn't.
 String getDescription()
           
 String getExtension(File f)
          Return the extension portion of the file's name .
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ArgoFileFilter

public ArgoFileFilter()
Method Detail

accept

public boolean accept(File f)
Return true if this file should be shown in the directory pane, false if it shouldn't. Files that begin with "." are ignored.
Overrides:
accept in class FileFilter
See Also:
getExtension(java.io.File), FileFilter#accepts

getExtension

public String getExtension(File f)
Return the extension portion of the file's name .
See Also:
getExtension(java.io.File), FileFilter.accept(java.io.File)

getDescription

public String getDescription()
Overrides:
getDescription in class FileFilter