Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/security/Guard.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11/* Guard.java -- Check access to a guarded object
    2    Copyright (C) 1998 Free Software Foundation, Inc.
     2   Copyright (C) 1998 Free Software Foundation, Inc.
    33
    44This file is part of GNU Classpath.
     
    4242 * access is allowed to a guarded object.
    4343 *
    44  * @version 0.0
    45  *
    46  * @author Aaron M. Renn ([email protected])
     44 * @author Aaron M. Renn <[email protected]>
     45 * @see GuardedObject
     46 * @since 1.1
     47 * @status updated to 1.4
    4748 */
    4849public interface Guard
     
    5051  /**
    5152   * This method tests whether or not access is allowed to the specified
    52    * guarded object.  Access is allowed if this method returns silently. If
     53   * guarded object. If
    5354   * access is denied, an exception is generated.
    5455   *
    55    * @param obj The <code>Object</code> to test
    56    *
    57    * @exception SecurityException If access to the object is denied.
     56   * @param obj the <code>Object</code> to test
     57   * @throws SecurityException if access to the object is denied
    5858   */
    59   public abstract void checkGuard(Object obj) throws SecurityException;
    60 
    61 }
     59  void checkGuard(Object obj);
     60} // interface Guard
Note: See TracChangeset for help on using the changeset viewer.