0 Replies Latest reply on Nov 7, 2007 10:06 AM by monsj

    Seam @Name should default to qualified name

    monsj

      As I am a Seam noob I'll post this here before I even think of a JIRA

      I think that Seam should default to a qualified name.

      Instead of having to do
      package com.xyz;

      @Name("com.xyz.testObject")
      public class TestObject {
      }

      This should be sufficient to get the same name on the Seam object

      package com.xyz;

      @Name
      public class TestObject {
      }