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/PrivilegedExceptionAction.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11/* PrivilegedExceptionAction.java -- Perform a privileged operation
    2    Copyright (C) 1998 Free Software Foundation, Inc.
     2   Copyright (C) 1998 Free Software Foundation, Inc.
    33
    44This file is part of GNU Classpath.
     
    3939
    4040/**
    41  * This interface defines a method that is called by 
     41 * This interface defines a method that is called by
    4242 * <code>AccessController.doPrivileged()</code> in order to perform a
    4343 * privileged operation with higher privileges enabled.  This interface
     
    4545 * method in this interface may throw a checked exception.
    4646 *
    47  * @version 0.0
    48  *
    4947 * @author Aaron M. Renn ([email protected])
     48
     49
    5050 */
    5151public interface PrivilegedExceptionAction
     
    5656   * <code>AccessController.doPrivileged()</code>.
    5757   *
    58    * @return obj An implementation defined return value.
    59    *
    60    * @exception Exception An implementation specific exception.
     58   * @return obj An implementation defined return value
     59   * @throws Exception An implementation specific exception
     60   * @see AccessController#doPrivileged(PrivilegedExceptionAction)
     61   * @see AccessController#doPrivileged(PrivilegedExceptionAction,
     62   *                                    AccessControlContext)
    6163   */
    62   public abstract Object run() throws Exception;
    63 }
     64  Object run() throws Exception;
     65}
Note: See TracChangeset for help on using the changeset viewer.