|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface DecoratedReflector
An extension of the Reflector interface that defines extra methods. All
methods specified in this interface can be easily implemented using just the
methods in the Reflector interface. Thus, if you are defining your own
reflector you should implement only the Reflector interface. If you extend
from BaseReflector
, your reflector
will implement this inteface automatically.
If you don't want to extend from BaseReflector
, you can still
easily expose this interface by using the
ReflectorDecorator
.
Method Summary | |
---|---|
boolean |
isReflectable(java.lang.Class reflectedType)
Indicates whether the given type is reflectable by this reflector. |
Methods inherited from interface net.sf.morph.reflect.Reflector |
---|
getReflectableClasses, getWrapper |
Method Detail |
---|
boolean isReflectable(java.lang.Class reflectedType) throws ReflectionException
reflectedType
- the type to test
true
, if this reflector can reflect the given
class or false
, if this reflector cannot reflect the given
class
ReflectionException
- if an error occurrs
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |