org.unlaxer.compiler.MemoryJavaFileObjectForJava Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinyExpression Show documentation
Show all versions of tinyExpression Show documentation
TinyExpression implemented with Unlaxer
The newest version!
package org.unlaxer.compiler;
import java.net.URI;
import javax.tools.JavaFileObject;
import javax.tools.SimpleJavaFileObject;
public class MemoryJavaFileObjectForJava extends SimpleJavaFileObject{
String javaSourceCode;
protected MemoryJavaFileObjectForJava(ClassName className , String javaSourceCode) {
super(URI.create("string:///" + className.name() + ".java"), JavaFileObject.Kind.SOURCE);
this.javaSourceCode = javaSourceCode;
}
@Override
public CharSequence getCharContent(boolean ignoreEncodingErrors) {
return javaSourceCode;
}
}