[
https://issues.jboss.org/browse/JBIDE-11867?page=com.atlassian.jira.plugi...
]
Cody Lerum commented on JBIDE-11867:
------------------------------------
My understanding is that
{code}@Foo Event<AuditLog> auditLog;{code}
Would be observed by:
@Observes AuditLog auditLog;
@Observes @Foo AuditLog auditLog;
However
{code}Event<AuditLog> auditLog;{code} would not be observed by a more specific
observer such as @Observes @Foo AuditLog auditLog;
See -
http://docs.jboss.org/cdi/spec/1.0/html_single/#d0e6742
Tooling for CDI Event identifies invalid observer
-------------------------------------------------
Key: JBIDE-11867
URL:
https://issues.jboss.org/browse/JBIDE-11867
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: CDI
Affects Versions: 3.3.0.Beta2
Environment: Eclipse Version: Indigo Service Release 2 Build id: 20120216-1857
JBoss Tools Nightly
Context and Dependency Injection
Tools 1.2.0.v20120508-1258-H1103-CR1 org.jboss.tools.cdi.feature.feature.group JBoss by
Red Hat
Reporter: Cody Lerum
Assignee: Viacheslav Kabanovich
Fix For: 3.3.0.CR1
Attachments: cdi_event.png
With the following event
{code}
@Inject
private Event<EventLog> eventLog;
{code}
Tooling suggests that the following is a valid observer which it is not because it
specifics an additional qualifier. Additionally it should show a warning that no observer
exists to receive this event.
{code}
public void log(@Observes @Now EventLog eventLog) {
...
}
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira