Changeset 1391 for branches/GNU/src/gcc/libjava/java/security/Guard.java
- 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/Guard.java (modified) (3 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/Guard.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 1 /* Guard.java -- Check access to a guarded object 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. … … 42 42 * access is allowed to a guarded object. 43 43 * 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 47 48 */ 48 49 public interface Guard … … 50 51 /** 51 52 * This method tests whether or not access is allowed to the specified 52 * guarded object. Access is allowed if this method returns silently.If53 * guarded object. If 53 54 * access is denied, an exception is generated. 54 55 * 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 58 58 */ 59 public abstract void checkGuard(Object obj) throws SecurityException; 60 61 } 59 void checkGuard(Object obj); 60 } // interface Guard -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
