01: package com.jat.business;
02:
03: import java.util.Vector;
04: import java.util.Enumeration;
05: import java.io.Serializable;
06:
07: /**
08: * <p>Title: JAT</p>
09: * <p>Description: </p>
10: * <p>Copyright: Copyright (c) 2004 -2005 Stefano Fratini (stefano.fratini@gmail.com)</p>
11: * <p>Distributed under the terms of the GNU Lesser General Public License, v2.1 or later</p>
12: * @author stf
13: * @version 1.0
14: */
15:
16: public class BusinessObjectPropertyList extends Vector implements
17: Serializable {
18:
19: public String toString() {
20: String ret = "{";
21: for (Enumeration e = this .elements(); e.hasMoreElements();)
22: ret += "[" + e.nextElement().toString() + "]";
23: return ret += "}";
24: }
25: }
|