Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



This interface guards access to an
object. The checkGuard( ) method is passed an
object to which access has been requested. If access should be
granted, checkGuard( ) should return silently.
Otherwise, if access is denied, checkGuard( )
should throw a java.lang.SecurityException. The
Guard object is used primarily by the
GuardedObject class. Note that all
Permission objects implement the
Guard interface.

public interface 

Guard {
// Public Instance Methods
void

checkGuard (Object

object ) throws SecurityException;
}


Implementations


Permission

Passed To


GuardedObject.GuardedObject( )

/ 1191