Example usage for org.apache.commons.vfs FileName toString

List of usage examples for org.apache.commons.vfs FileName toString

Introduction

In this page you can find the example usage for org.apache.commons.vfs FileName toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:com.newatlanta.appengine.vfs.provider.GaeFileSystem.java

@Override
public synchronized FileObject resolveFile(FileName name) throws FileSystemException {
    if (!"gae".equals(name.getScheme())) {
        return getFileSystemManager().resolveFile(name.toString());
    }/*from  www .j a v  a 2 s .  c  o  m*/
    return super.resolveFile(name);
}