Re: Calling nested class method in ognl
Thanks! Howard -- View this message in context: http://tapestry.1045711.n5.nabble.com/Calling-nested-class-method-in-ognl-tp5460991p5464187.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe,
Re: Calling nested class method in ognl
You can't. If it's private OGNL can't access it. On Mon, Feb 6, 2012 at 11:11 AM, tgupta1419 wrote: > I’m in a such a situation : > > > > Public abstract class TopLevel{ > > > > Private static class NestedLevel { > > Public String getMethod1() { > > } > > } > > }