| Home >> All >> org >> hibernate >> test >> [ dynamicentity Javadoc ] |
Source code: org/hibernate/test/dynamicentity/Company.java
1 package org.hibernate.test.dynamicentity; 2 3 /** 4 * @author <a href="mailto:steve@hibernate.org">Steve Ebersole </a> 5 */ 6 public interface Company { 7 public Long getId(); 8 public void setId(Long id); 9 public String getName(); 10 public void setName(String name); 11 }