Package ognl
Interface MemberAccess
- All Known Implementing Classes:
DefaultMemberAccess
public interface MemberAccess
This interface provides a hook for preparing for accessing members
of objects. The Java2 version of this method can allow access
to otherwise inaccessable members, such as private fields.
- Version:
- 15 October 1999
- Author:
- Luke Blanshard (blanshlu@netscape.net), Drew Davidson (drew@ognl.org)
-
Method Summary
Modifier and TypeMethodDescriptionboolean
isAccessible
(Map context, Object target, Member member, String propertyName) Returns true if the given member is accessible or can be made accessible by this object.void
Restores the member from the previous setup call.Sets the member up for accessibility
-
Method Details
-
setup
Sets the member up for accessibility -
restore
Restores the member from the previous setup call. -
isAccessible
Returns true if the given member is accessible or can be made accessible by this object.
-