Package org.jboss.seam.framework

Examples of org.jboss.seam.framework.EntityHome


    * provides a type parameter in the class definition
    */
   @Test
   public void testReadEntityClassFromTypeParameter()
   {
      EntityHome typelessHome = new EntityHome();
      typelessHome.setEntityClass(SimpleEntity.class);
      assert typelessHome.getEntityClass() == SimpleEntity.class;
     
      assert new SimpleEntityHomeWithType().getEntityClass() == SimpleEntity.class;

      try
      {
View Full Code Here

TOP

Related Classes of org.jboss.seam.framework.EntityHome

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.