Interface VFSFileFilter

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String SERVICE_NAME  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean accept​(java.lang.String url)
      Same thing as accept(VFSFile) above, but operates on the raw URL instead of a VFSFile object.
      boolean accept​(VFSFile file)
      Should return whether the entry represented by the given URL should be listed in the browser view.
      java.lang.String getDescription()
      Returns the description of the filter, to be used in the VFSBrowser window.
    • Field Detail

      • SERVICE_NAME

        static final java.lang.String SERVICE_NAME
    • Method Detail

      • accept

        boolean accept​(VFSFile file)
        Should return whether the entry represented by the given URL should be listed in the browser view. Can be a file or a directory.
      • accept

        boolean accept​(java.lang.String url)
        Same thing as accept(VFSFile) above, but operates on the raw URL instead of a VFSFile object.
      • getDescription

        java.lang.String getDescription()
        Returns the description of the filter, to be used in the VFSBrowser window.