KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jodd > petite > test > BooC


1 // Copyright (c) 2003-2007, Jodd Team (jodd.sf.net). All Rights Reserved.
2

3 package jodd.petite.test;
4
5 import jodd.petite.meta.PetiteBeanRef;
6
7 public class BooC {
8
9     private Foo foo;
10
11     public BooC() {
12     }
13
14     public BooC(@PetiteBeanRef String JavaDoc foo, String JavaDoc s) {
15     }
16
17
18     private BooC(@PetiteBeanRef Foo foo) {
19         this.foo = foo;
20     }
21
22     public Foo getFoo() {
23         return foo;
24     }
25 }
26
Popular Tags