< prev index next >

test/runtime/Nestmates/privateStaticMethods/TestReflection.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8046171
  27  * @summary Test access to private static methods between nestmates and nest-top
  28  *          using different flavours of named nested types using core reflection
  29  * @compile -XDdisablePrivateAccessors TestReflection.java
  30  * @run main TestReflection
  31  */
  32 
  33 public class TestReflection {
  34 
  35     // Private method of nest-top for nestmates to access
  36     private static void priv_static_invoke() {
  37         System.out.println("TestReflection::priv_static_invoke");
  38     }
  39 
  40     // public constructor so we aren't relying on private access
  41     public TestReflection() {}
  42 
  43     // Methods that will access private static methods of nestmates
  44 
  45     // NOTE: No InnerNested calls in this test because non-static nested types
  46     // can't have static methods
  47 
  48     void access_priv(TestReflection o) throws Throwable {
  49         o.getClass().getDeclaredMethod("priv_static_invoke", new Class<?>[0]).invoke(null, new Object[0]);




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8046171
  27  * @summary Test access to private static methods between nestmates and nest-top
  28  *          using different flavours of named nested types using core reflection

  29  * @run main TestReflection
  30  */
  31 
  32 public class TestReflection {
  33 
  34     // Private method of nest-top for nestmates to access
  35     private static void priv_static_invoke() {
  36         System.out.println("TestReflection::priv_static_invoke");
  37     }
  38 
  39     // public constructor so we aren't relying on private access
  40     public TestReflection() {}
  41 
  42     // Methods that will access private static methods of nestmates
  43 
  44     // NOTE: No InnerNested calls in this test because non-static nested types
  45     // can't have static methods
  46 
  47     void access_priv(TestReflection o) throws Throwable {
  48         o.getClass().getDeclaredMethod("priv_static_invoke", new Class<?>[0]).invoke(null, new Object[0]);


< prev index next >