If c.s.s.u.Trees.isAccessible is called on a public innerclass, which is inside an inaccessible type, it returns true, although it should return false, in my opinion.
I have revision 248 checked-out from https://openjdk.dev.java.net/svn/openjdk/jdk/trunk, but I have some problems with the checkout, so it is possible that I run tests against an older 1.7 build.
Test case:
/*
* @test
* @bug 9999999
* @summary Trees.isAccessible does not work correctly
*/
import com.sun.source.tree.CompilationUnitTree;
import com.sun.source.tree.Scope;
import com.sun.source.util.JavacTask;
import com.sun.source.util.TreePath;
import com.sun.source.util.Trees;
import java.io.IOException;
import java.net.URI;
import java.util.Arrays;
import javax.lang.model.element.TypeElement;
import javax.tools.JavaCompiler;
import javax.tools.JavaFileObject;
import javax.tools.SimpleJavaFileObject;
import javax.tools.ToolProvider;
public class T9999999 {
static class MyFileObject extends SimpleJavaFileObject {
private String text;
public MyFileObject(String text) {
super(URI.create("myfo:/Test.java"), JavaFileObject.Kind.SOURCE);
this.text = text;
}
@Override
public CharSequence getCharContent(boolean ignoreEncodingErrors) {
return text;
}
}
public static void main(String[] args) throws IOException {
final String bootPath = System.getProperty("sun.boot.class.path"); //NOI18N
final JavaCompiler tool = ToolProvider.getSystemJavaCompiler();
assert tool != null;
String code = "package test; public class Test {}";
JavacTask ct = (JavacTask)tool.getTask(null, null, null, Arrays.asList("-bootclasspath", bootPath, "-Xjcov"), null, Arrays.asList(new MyFileObject(code)));
CompilationUnitTree cut = ct.parse().iterator().next();
ct.analyze();
TreePath tp = new TreePath(new TreePath(cut), cut.getTypeDecls().get(0));
Trees trees = Trees.instance(ct);
Scope s = trees.getScope(tp);
TypeElement e = ct.getElements().getTypeElement("com.sun.java.util.jar.pack.Package.File");
if (trees.isAccessible(s, e)) {
throw new IllegalStateException("Should not be accessible");
}
}
}
I have revision 248 checked-out from https://openjdk.dev.java.net/svn/openjdk/jdk/trunk, but I have some problems with the checkout, so it is possible that I run tests against an older 1.7 build.
Test case:
/*
* @test
* @bug 9999999
* @summary Trees.isAccessible does not work correctly
*/
import com.sun.source.tree.CompilationUnitTree;
import com.sun.source.tree.Scope;
import com.sun.source.util.JavacTask;
import com.sun.source.util.TreePath;
import com.sun.source.util.Trees;
import java.io.IOException;
import java.net.URI;
import java.util.Arrays;
import javax.lang.model.element.TypeElement;
import javax.tools.JavaCompiler;
import javax.tools.JavaFileObject;
import javax.tools.SimpleJavaFileObject;
import javax.tools.ToolProvider;
public class T9999999 {
static class MyFileObject extends SimpleJavaFileObject {
private String text;
public MyFileObject(String text) {
super(URI.create("myfo:/Test.java"), JavaFileObject.Kind.SOURCE);
this.text = text;
}
@Override
public CharSequence getCharContent(boolean ignoreEncodingErrors) {
return text;
}
}
public static void main(String[] args) throws IOException {
final String bootPath = System.getProperty("sun.boot.class.path"); //NOI18N
final JavaCompiler tool = ToolProvider.getSystemJavaCompiler();
assert tool != null;
String code = "package test; public class Test {}";
JavacTask ct = (JavacTask)tool.getTask(null, null, null, Arrays.asList("-bootclasspath", bootPath, "-Xjcov"), null, Arrays.asList(new MyFileObject(code)));
CompilationUnitTree cut = ct.parse().iterator().next();
ct.analyze();
TreePath tp = new TreePath(new TreePath(cut), cut.getTypeDecls().get(0));
Trees trees = Trees.instance(ct);
Scope s = trees.getScope(tp);
TypeElement e = ct.getElements().getTypeElement("com.sun.java.util.jar.pack.Package.File");
if (trees.isAccessible(s, e)) {
throw new IllegalStateException("Should not be accessible");
}
}
}
- duplicates
-
JDK-6598108 com.sun.source.util.Trees.isAccessible incorrect
-
- Closed
-