01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com> and
03: * JR Boyens <gnu-jrb[remove] at gmx dot net>
04: * Distributed under the terms of either:
05: * - the common development and distribution license (CDDL), v1.0; or
06: * - the GNU Lesser General Public License, v2.1 or later
07: * $Id: ChildBean.java 3634 2007-01-08 21:42:24Z gbevin $
08: */
09: package com.uwyn.rife.database.querymanagers.generic.beans;
10:
11: import com.uwyn.rife.database.querymanagers.generic.beans.ParentBean;
12:
13: public class ChildBean extends ParentBean {
14: private String mChildString = null;
15:
16: public void setChildString(String childString) {
17: mChildString = childString;
18: }
19:
20: public String getChildString() {
21: return mChildString;
22: }
23: }
|