With anonymous inner classes, how does Java treat fields that are declared outside of the anonymous inner class block.
In the case policyOwnerModelObject, how is that field defined in the generated anonymous inner class?
// Local variable
final Bean policyOwnerModelObject = XXXXX <--- here, how is the class built with access to this object. Is it a final field in the class?
final WebMarkupContainer container = new WebMarkupContainer("container") {
@Override
public boolean isVisible() {
if ((policyOwnerModelObject.getPolicyOwner() != null) && (policyOwnerModelObject.getPolicyOwner().getValue() != null)) {
return !PolicyOwnerService.TRUST.equals(policyOwnerModelObject.getPolicyOwner().getValue());
} else {
return false;
}
}
};
====
OK, decompiled the class and this is what I got:
class MyDataPanel$1 extends WebMarkupContainer
{
public boolean isVisible()
{
if(val$policyOwnerModelObject.getMy() != null && val$policyOwnerModelObject.getMy().getValue() != null)
return !"4".equals(val$policyOwnerModelObject.getMy().getValue());
else
return false;
}
final MyDataPanel this$0;
private final MyBean val$policyOwnerModelObject;
MyDataPanel$1(MyBean policyownerbean)
{
this$0 = final_policytrustpanel;
val$policyOwnerModelObject = policyownerbean;
super(String.this);
}
}
this$0 = final_policytrustpanel;Where doesfinal_policytrustpanelcome from? – jjnguy♦ Dec 13 '10 at 17:03thisas being afinallocal of the enclosing method (even if the inner class isn't anonymous). – Tom Hawtin - tackline Dec 13 '10 at 17:05