KickJava   Java API By Example, From Geeks To Geeks.

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


1 //$Id: Mono.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
2
package org.hibernate.test.legacy;
3
4 import java.util.Set JavaDoc;
5
6
7 public class Mono extends Top {
8     
9     private Set JavaDoc strings;
10
11     /**
12      * Constructor for Mono.
13      * @param c
14      */

15     public Mono(int c) {
16         super(c);
17     }
18
19     /**
20      * Constructor for Mono.
21      */

22     public Mono() {
23         super();
24     }
25
26     /**
27      * Returns the strings.
28      * @return Set
29      */

30     public Set JavaDoc getStrings() {
31         return strings;
32     }
33
34     /**
35      * Sets the strings.
36      * @param strings The strings to set
37      */

38     public void setStrings(Set JavaDoc strings) {
39         this.strings = strings;
40     }
41
42 }
43
Popular Tags