Known Direct Subclasses
ClassScope |
This class represents the scope containing the type variables of
a class. |
ConstructorScope |
This class represents the scope containing the type variables of
a constructor. |
MethodScope |
This class represents the scope containing the type variables of
a method. |
|
Class Overview
Abstract superclass for lazy scope objects, used when building
factories for generic information repositories.
The type parameter D represents the type of reflective
object whose scope this class is representing.
To subclass this, all one needs to do is implement
computeEnclosingScope and the subclass' constructor.
Summary
Protected Methods |
abstract
Scope
|
computeEnclosingScope()
This method must be implemented by any concrete subclass.
|
Scope
|
getEnclosingScope()
Accessor for the enclosing scope, which is computed lazily and cached.
|
D
|
getRecvr()
Accessor for the receiver - the object whose scope this Scope
object represents.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait()
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object.
|
final
void
|
wait(long timeout, int nanos)
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object, or
some other thread interrupts the current thread, or a certain
amount of real time has elapsed.
|
final
void
|
wait(long timeout)
Causes the current thread to wait until either another thread invokes the
notify() method or the
notifyAll() method for this object, or a
specified amount of time has elapsed.
|
|
From interface
sun.reflect.generics.scope.Scope
|
Protected Constructors
protected
AbstractScope
(D decl)
Constructor. Takes a reflective object whose scope the newly
constructed instance will represent.
Public Methods
Lookup a type variable in the scope, using its name. Returns null if
no type variable with this name is declared in this scope or any of its
surrounding scopes.
Parameters
name
| - the name of the type variable being looked up |
Returns
- the requested type variable, if found
Protected Methods
protected
abstract
Scope
computeEnclosingScope
()
This method must be implemented by any concrete subclass.
It must return the enclosing scope of this scope. If this scope
is a top-level scope, an instance of DummyScope must be returned.
Returns
- The enclosing scope of this scope
protected
Scope
getEnclosingScope
()
Accessor for the enclosing scope, which is computed lazily and cached.
protected
D
getRecvr
()
Accessor for the receiver - the object whose scope this Scope
object represents.
Returns
- The object whose scope this Scope object represents