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

Quick Search    Search Deep

Source code: org/hibernate/test/ondelete/Salesperson.java


1   //$Id: Salesperson.java 7119 2005-06-12 22:03:30Z oneovthafew $
2   package org.hibernate.test.ondelete;
3   
4   import java.util.HashSet;
5   import java.util.Set;
6   
7   public class Salesperson extends Employee {
8     private Set customers = new HashSet();
9   
10    public Set getCustomers() {
11      return customers;
12    }
13  
14    public void setCustomers(Set customers) {
15      this.customers = customers;
16    }
17  
18  }