Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: ClassLib/Common/java/lang/reflect/AccessibleObject.java


1   // AccessibleObject.java, created Thu Jul  4  4:50:03 2002 by joewhaley
2   // Copyright (C) 2001-3 John Whaley <jwhaley@alum.mit.edu>
3   // Licensed under the terms of the GNU LGPL; see COPYING for details.
4   package ClassLib.Common.java.lang.reflect;
5   
6   /**
7    * AccessibleObject
8    *
9    * @author  John Whaley <jwhaley@alum.mit.edu>
10   * @version $Id: AccessibleObject.java,v 1.3 2003/05/12 10:04:53 joewhaley Exp $
11   */
12  public abstract class AccessibleObject {
13  
14      public native boolean isAccessible();
15      
16  }