1 /*
2 * Created on 2003-6-11 14:57:53 by joel guo
3 *
4 * vTradEx Information Technology Inc.
5 */
6 package com.cyclops.dbdigger.idbroker;
7 /*** Add description <font color="red">HERE</font>!
8 *
9 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a>
10 * @since 2003-6-11 14:57:53
11 */
12 public class PrimaryKey {
13 private Object key;
14 /*** Constructor of class PrimaryKey
15 * @param akey Key object
16 */
17 public PrimaryKey(Object akey) {
18 key = akey;
19 }
20 /*** Method getObject() in class PrimaryKey
21 * @return value of this key
22 */
23 public Object getObject() {
24 return key;
25 }
26 }
This page was automatically generated by Maven