[jbosstools-issues] [JBoss JIRA] Created: (JBIDE-7950) Abstract classes is being considered injectable

Max Andersen (JIRA) jira-events at lists.jboss.org
Sun Dec 19 15:22:18 EST 2010


Abstract classes is being considered injectable
-----------------------------------------------

                 Key: JBIDE-7950
                 URL: https://issues.jboss.org/browse/JBIDE-7950
             Project: Tools (JBoss Tools)
          Issue Type: Bug
          Components: cdi (jsr-299)
    Affects Versions: 3.2.0.Beta2
            Reporter: Max Andersen
            Assignee: Alexey Kazakov
            Priority: Critical
             Fix For: 3.2.0.CR1


public interface Project {

}

public abstract class AbstractProject implements Project {

}

public class ProjectImpl extends AbstractProject {

}

@Singleton
public class CurrentProject {
 @Produces
   @Default
   @Dependent
   public Project getCurrent()

}

and then:

@Inject Project project;

And I get "Multiple beans are eligible for injection to the injection point"

Open All elgible beans seem to consider getCurrent() *and* the abstract class - but for some reason not ProjectImpl as elgible.

Should it not just be getCurrent() ?



-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the jbosstools-issues mailing list