[
https://jira.jboss.org/jira/browse/JBSEAM-3933?page=com.atlassian.jira.pl...
]
Clint Popetz updated JBSEAM-3933:
---------------------------------
Attachment: JBSEAM-3933.patch
A patch to move injection/disinjection of enclosing instances out of BijectionInterceptor
and into WicketHandler so that reentrancy can be controlled on a per-instance basis.
Sibling inner class wicket component injection conflict
-------------------------------------------------------
Key: JBSEAM-3933
URL:
https://jira.jboss.org/jira/browse/JBSEAM-3933
Project: Seam
Issue Type: Bug
Components: Wicket
Affects Versions: 2.1.1.GA
Reporter: Clint Popetz
Assignee: Clint Popetz
Fix For: 2.1.2.CR1
Attachments: JBSEAM-3933.patch
In a class hierarchy such as this:
class Page {
@In Needed needed;
Page() {
add(new ListView("foo") { /* anonymous...*/ });
add(new ListView("bar") { /* anonymous...*/ });
}
}
if "foo" makes reference to "bar", or vice versa, the injection of
"needed" will be trampled upon, because we don't update the reentrancy count
of the enclosing instance when injection/disinjecting.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira