KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > legacy > NestingComponent


1 package org.hibernate.test.legacy;
2
3 import java.io.Serializable JavaDoc;
4
5 public class NestingComponent implements Serializable JavaDoc {
6     private ComponentCollection nested;
7     public ComponentCollection getNested() {
8         return nested;
9     }
10
11     public void setNested(ComponentCollection collection) {
12         nested = collection;
13     }
14
15 }
16
Popular Tags