[jbosstools-issues] [JBoss JIRA] (JBIDE-12503) CDI Bean types are not updated

Alexey Kazakov (JIRA) jira-events at lists.jboss.org
Tue Aug 28 14:18:14 EDT 2012


Alexey Kazakov created JBIDE-12503:
--------------------------------------

             Summary: CDI Bean types are not updated
                 Key: JBIDE-12503
                 URL: https://issues.jboss.org/browse/JBIDE-12503
             Project: Tools (JBoss Tools)
          Issue Type: Feature Request
          Components: CDI
    Affects Versions: 4.0.0.M1
            Reporter: Alexey Kazakov
            Assignee: Alexey Kazakov
             Fix For: 4.0.0.M1


1. Create the following types:

{code}
package cditest;

import javax.enterprise.inject.Typed;

@Typed(LocalTest.class)
public class NewTest implements LocalExtendedTest {
 
}
{code}
{code}
package cditest;

public interface LocalTest {

}
{code}
{code}
package cditest;

public interface LocalExtendedTest {

}
{code}

2. Build the project.
3. There is a validation problem on NewTest bean since @Typed is not correct
4. Edit LocalExtendedTest.java:
{code}
package cditest;

public interface LocalExtendedTest extends LocalTest {

}
{code}
5. Save the file.
6. FAILURE: NewTest in not re-validated and the error is not gone.

--
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

        


More information about the jbosstools-issues mailing list