uk.co.badgersinfoil.metaas.dom
Interface Visibility


public interface Visibility

Access allowed to a class member from other classes, as specified by the public, private, protected and internal modifiers (or lack of) in the member's definition.


Field Summary
static Visibility DEFAULT
          Default access, as specified by the lack of any specific keyword.
static Visibility INTERNAL
          Internal access, as specified by the "internal" modifier.
static Visibility PRIVATE
          Private access, as specified by the "private" modifier.
static Visibility PROTECTED
          Protected access, as specified by the "protected" modifier.
static Visibility PUBLIC
          Public access, as specified by the "public" modifier.
 

Field Detail

PRIVATE

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


PUBLIC

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


PROTECTED

static final Visibility PROTECTED
Protected access, as specified by the "protected" modifier.


INTERNAL

static final Visibility INTERNAL
Internal access, as specified by the "internal" modifier.


DEFAULT

static final Visibility DEFAULT
Default access, as specified by the lack of any specific keyword.



Copyright © 2006-2008 David Holroyd. All Rights Reserved.