[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-3933) Sibling inner class wicket component injection conflict

Clint Popetz (JIRA) jira-events at lists.jboss.org
Wed Feb 4 15:28:44 EST 2009


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


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

        



More information about the seam-issues mailing list