Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

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   }