1 16 package org.apache.commons.vfs.provider; 17 18 import org.apache.commons.vfs.FileName; 19 import org.apache.commons.vfs.FileSystemException; 20 21 24 public interface FileNameParser 25 { 26 31 public boolean encodeCharacter(char ch); 32 33 40 public FileName parseUri(final VfsComponentContext context, final FileName base, final String filename) throws FileSystemException; 41 } 42 | Popular Tags |