KickJava   Java API By Example, From Geeks To Geeks.

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


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 BooC2 {
8
9     private Foo foo;
10     private Zoo zoo;
11
12     private BooC2(@PetiteBeanRef Foo foo, @PetiteBeanRef Zoo zoo) {
13         this.foo = foo;
14         this.zoo = zoo;
15     }
16
17     public Foo getFoo() {
18         return foo;
19     }
20
21
22     public Zoo getZoo() {
23         return zoo;
24     }
25 }
26
Popular Tags