~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/abstractembeddedcomponents/propertyref/Server.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hibernate.test.abstractembeddedcomponents.propertyref;
 
2
 
 
3
import org.hibernate.test.abstractembeddedcomponents.propertyref.Address;
 
4
 
 
5
/**
 
6
 * @author Steve Ebersole
 
7
 */
 
8
public interface Server {
 
9
        public Long getId();
 
10
        public void setId(Long id);
 
11
        public String getServerType();
 
12
        public void setServerType(String serverType);
 
13
        public Address getAddress();
 
14
        public void setAddress(Address address);
 
15
}