aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/security/PrivilegedAction.h
diff options
context:
space:
mode:
authorMikael Morin <mikael@gcc.gnu.org>2010-10-06 15:21:00 +0000
committerMikael Morin <mikael@gcc.gnu.org>2010-10-06 15:21:00 +0000
commit4f2b3d28a20053d20018732227a7865e33582f2d (patch)
tree5ffb20535cf1d99a1082a8e8c6f7cf06dabb09d1 /libjava/java/security/PrivilegedAction.h
parent9231ff56b1aa73bb82e02cc513c6e3ba8a3c2b00 (diff)
downloadgcc-4f2b3d28a20053d20018732227a7865e33582f2d.zip
gcc-4f2b3d28a20053d20018732227a7865e33582f2d.tar.gz
gcc-4f2b3d28a20053d20018732227a7865e33582f2d.tar.bz2
symbol.c (free_components): Free list of formal args and formal namespace.
2010-10-06 Mikael Morin <mikael@gcc.gnu.org> * symbol.c (free_components): Free list of formal args and formal namespace. From-SVN: r165037
Diffstat (limited to 'libjava/java/security/PrivilegedAction.h')
0 files changed, 0 insertions, 0 deletions
n class="hl com">exception statement from your version. */ package java.security; /** * This interface specifies a mechanism for querying whether or not * access is allowed to a guarded object. * * @author Aaron M. Renn <arenn@urbanophile.com> * @see GuardedObject * @since 1.1 * @status updated to 1.4 */ public interface Guard { /** * This method tests whether or not access is allowed to the specified * guarded object. Access is allowed if this method returns silently. If * access is denied, an exception is generated. * * @param obj the <code>Object</code> to test * @throws SecurityException if access to the object is denied */ void checkGuard(Object obj); } // interface Guard