Example usage for javax.tools FileObject toString

List of usage examples for javax.tools FileObject toString

Introduction

In this page you can find the example usage for javax.tools FileObject toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:com.github.drxaos.jvmvm.compiler.javac.MemoryFileManager.java

@Override
public boolean isSameFile(FileObject a, FileObject b) {
    return a.toString().equals(b.toString());
}