Package org.codehaus.groovy.tools.javac
Class RawJavaFileObject
- java.lang.Object
-
- javax.tools.SimpleJavaFileObject
-
- org.codehaus.groovy.tools.javac.RawJavaFileObject
-
- All Implemented Interfaces:
FileObject
,JavaFileObject
public class RawJavaFileObject extends SimpleJavaFileObject
Represents a Java source file in file to compile- Since:
- 3.0.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface javax.tools.JavaFileObject
JavaFileObject.Kind
-
-
Field Summary
-
Fields inherited from class javax.tools.SimpleJavaFileObject
kind, uri
-
-
Constructor Summary
Constructors Constructor Description RawJavaFileObject(URI uri)
Construct a RawJavaFileObject of the given kind and with the given URI.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
delete()
delete the Java source fileboolean
equals(Object o)
CharSequence
getCharContent(boolean ignoreEncodingErrors)
int
hashCode()
String
toString()
-
Methods inherited from class javax.tools.SimpleJavaFileObject
getAccessLevel, getKind, getLastModified, getName, getNestingKind, isNameCompatible, openInputStream, openOutputStream, openReader, openWriter, toUri
-
-
-
-
Constructor Detail
-
RawJavaFileObject
public RawJavaFileObject(URI uri)
Construct a RawJavaFileObject of the given kind and with the given URI.- Parameters:
uri
- the URI for this file object
-
-
Method Detail
-
getCharContent
public CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOException
- Specified by:
getCharContent
in interfaceFileObject
- Overrides:
getCharContent
in classSimpleJavaFileObject
- Throws:
IOException
-
delete
public boolean delete()
delete the Java source file- Specified by:
delete
in interfaceFileObject
- Overrides:
delete
in classSimpleJavaFileObject
- Returns:
true
if deleted successfully
-
toString
public String toString()
- Overrides:
toString
in classSimpleJavaFileObject
-
-