| Home >> All >> org >> hibernate >> test >> [ dynamicentity Javadoc ] |
Source code: org/hibernate/test/dynamicentity/Customer.java
1 package org.hibernate.test.dynamicentity; 2 3 /** 4 * @author <a href="mailto:steve@hibernate.org">Steve Ebersole </a> 5 */ 6 public interface Customer extends Person { 7 public Company getCompany(); 8 public void setCompany(Company company); 9 }