uk.co.badgersinfoil.metaas
Class ASProtection

java.lang.Object
  extended byuk.co.badgersinfoil.metaas.ASProtection

public class ASProtection
extends java.lang.Object

Represents the access to a class mamber allowed from other classes, as specified by the "public" and "private" modifiers (or lack of) in the member's definition.


Field Summary
static ASProtection DEFAULT
          Default access, as specified by the lack of either a "public or "private" modifier.
static ASProtection PRIVATE
          Private access, as specified by the "private" modifier.
static ASProtection PUBLIC
          Public access, as specified by the "public" modifier.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

PRIVATE

public static final ASProtection PRIVATE
Private access, as specified by the "private" modifier.


PUBLIC

public static final ASProtection PUBLIC
Public access, as specified by the "public" modifier.


DEFAULT

public static final ASProtection DEFAULT
Default access, as specified by the lack of either a "public or "private" modifier.

Method Detail

toString

public java.lang.String toString()