2 Replies Latest reply on Nov 10, 2006 10:46 AM by ccanning

    Incompatible Method signature with Home<> and documentation

    ccanning

      In the reference documentation for the Seam application framework, the PersonHome example has method

       protected Person getNewInstance() {
       return new Person(country);
       }
      


      but, the Home class has signature

      
       public ValueBinding getNewInstance();
      
      


      Should this be overriding the getNewInstance() method or some other method?