1 Reply Latest reply on Sep 23, 2009 11:25 PM by blabno

    Extending seam components

    evejeba
      I would like to extend the default component classes generated by seam. For example, I would like to write ComponentB, ComponentC extending ComponentA.


      @Name("componentA)
      class ComponentAHome extends EntityHome<A>{..}


      @Name("componentB)
      class ComponentBHome extends ComponentAHome {..}


      @Name("componentC)
      class ComponentCHome extends ComponentAHome {..}

      But while referring to ComponentCHome, seam is unable to instantiate as it's unable to find the entityClass. Let me know, what I am missing here.