< prev index next >

test/runtime/Nestmates/privateFields/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 fields 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 import java.lang.reflect.Field;
  34 
  35 public class TestReflection {
  36 
  37     // Private field of nest-top for nestmates to access
  38     private int priv_field;
  39 
  40     // public constructor so we aren't relying on private access
  41     public TestReflection() {}
  42 
  43     // Methods that will access private fields of nestmates
  44 
  45     // NOTE: No StaticIface variants as interfaces can't have instance fields
  46 
  47     void access_priv(TestReflection o) throws Throwable {
  48         Field f = o.getClass().getDeclaredField("priv_field");
  49         this.priv_field = f.getInt(o);




   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 fields between nestmates and nest-top
  28  *          using different flavours of named nested types using core reflection

  29  * @run main TestReflection
  30  */
  31 
  32 import java.lang.reflect.Field;
  33 
  34 public class TestReflection {
  35 
  36     // Private field of nest-top for nestmates to access
  37     private int priv_field;
  38 
  39     // public constructor so we aren't relying on private access
  40     public TestReflection() {}
  41 
  42     // Methods that will access private fields of nestmates
  43 
  44     // NOTE: No StaticIface variants as interfaces can't have instance fields
  45 
  46     void access_priv(TestReflection o) throws Throwable {
  47         Field f = o.getClass().getDeclaredField("priv_field");
  48         this.priv_field = f.getInt(o);


< prev index next >