[weld-issues] [JBoss JIRA] Closed: (WELD-732) Weld ignores observer methods declared in superclasses
Marius Bogoevici (JIRA)
jira-events at lists.jboss.org
Mon Nov 1 12:59:55 EDT 2010
[ https://jira.jboss.org/browse/WELD-732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Marius Bogoevici closed WELD-732.
---------------------------------
Fix Version/s: 1.1.0.Beta2
(was: 1.1.0.CR1)
Resolution: Done
> Weld ignores observer methods declared in superclasses
> ------------------------------------------------------
>
> Key: WELD-732
> URL: https://jira.jboss.org/browse/WELD-732
> Project: Weld
> Issue Type: Bug
> Affects Versions: 1.1.0.Beta1
> Reporter: Igor Vaynberg
> Fix For: 1.1.0.Beta2
>
>
> Currently when discovering observers weld only checks declared methods of the class, which ignores any observers declared in superclasses that should be inherited.
> {code}
> AbstractBeanDeployer:
> protected <X> void createObserverMethods(RIBean<X> declaringBean, WeldClass<X> annotatedClass)
> {
> for (WeldMethod<?, ? super X> method : annotatedClass.getDeclaredWeldMethodsWithAnnotatedParameters(Observes.class))
> {
> createObserverMethod(declaringBean, method);
> }
> }
> {code}
> Notice the use of get*Declared*WeldMethodsWithAnnotatedParameters().
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the weld-issues
mailing list