NOTE: This is a work in progress. You should probably use revision 5 until I get accesslib up to snuff.
This library allows access to graphs of Java objects by path-like strings. As a short example, suppose you have the following:
class A { String s; } class B { A x; }
Then, given an instance of class B, the path "/x/s" would provide access to the string s.
Early-nulls (if x were null) are also supported (as in JSP's Expression Language), but so is automatic graph construction. In such a case, new instances of A would have been assigned to x to access the (still null) string s.
Last modified 15 years ago
Last modified on 02/09/2008 10:09:07 PM