1 package xdoclet.plugins;
2
3 import xdoclet.sdk.xgg.XGGPojo;
4
5 import java.util.Collection;
6 import java.util.ArrayList;
7
8 /***
9 * Test bean for BetwixtPlugin.
10 *
11 * @author <a href="mailto:aslak.hellesoy at bekk.no">Aslak Hellesøy</a>
12 * @version $Revision: 1.3 $
13 */
14 public class Container extends XGGPojo {
15 String name;
16 Collection containers = new ArrayList();
17
18 public String getName() {
19 return name;
20 }
21
22 public Collection getContainerCollection() {
23 return containers;
24 }
25 }
26
This page was automatically generated by Maven