Uploaded image for project: 'Tools (JBoss Tools)'
  1. Tools (JBoss Tools)
  2. JBIDE-12503

CDI Bean types are not updated

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Major
    • 4.0.0.Alpha1
    • 4.0.0.Alpha1
    • cdi
    • None

    Description

      1. Create the following types:

      package cditest;
      
      import javax.enterprise.inject.Typed;
      
      @Typed(LocalTest.class)
      public class NewTest implements LocalExtendedTest {
       
      }
      
      package cditest;
      
      public interface LocalTest {
      
      }
      
      package cditest;
      
      public interface LocalExtendedTest {
      
      }
      

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

      package cditest;
      
      public interface LocalExtendedTest extends LocalTest {
      
      }
      

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

      Attachments

        Activity

          People

            scabanovich Viacheslav Kabanovich (Inactive)
            alexeykazakov Alexey Kazakov
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: