- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/security/PrivilegedExceptionAction.java (modified) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/security/PrivilegedExceptionAction.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 1 /* PrivilegedExceptionAction.java -- Perform a privileged operation 2 Copyright (C) 1998 Free Software Foundation, Inc.2 Copyright (C) 1998 Free Software Foundation, Inc. 3 3 4 4 This file is part of GNU Classpath. … … 39 39 40 40 /** 41 * This interface defines a method that is called by 41 * This interface defines a method that is called by 42 42 * <code>AccessController.doPrivileged()</code> in order to perform a 43 43 * privileged operation with higher privileges enabled. This interface … … 45 45 * method in this interface may throw a checked exception. 46 46 * 47 * @version 0.048 *49 47 * @author Aaron M. Renn ([email protected]) 48 49 50 50 */ 51 51 public interface PrivilegedExceptionAction … … 56 56 * <code>AccessController.doPrivileged()</code>. 57 57 * 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) 61 63 */ 62 public abstractObject run() throws Exception;63 } 64 Object run() throws Exception; 65 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
