Main Page | Class Hierarchy | Data Structures | Directories | File List | Data Fields | Related Pages

PartKey.java

00001 /*-
00002  * See the file LICENSE for redistribution information.
00003  *
00004  * Copyright (c) 2002-2005
00005  *      Sleepycat Software.  All rights reserved.
00006  *
00007  * $Id: PartKey.java,v 12.2 2005/06/16 20:22:22 bostic Exp $
00008  */
00009 
00010 package collections.ship.basic;
00011 
00012 import java.io.Serializable;
00013 
00023 public class PartKey implements Serializable {
00024 
00025     private String number;
00026 
00027     public PartKey(String number) {
00028 
00029         this.number = number;
00030     }
00031 
00032     public final String getNumber() {
00033 
00034         return number;
00035     }
00036 
00037     public String toString() {
00038 
00039         return "[PartKey: number=" + number + ']';
00040     }
00041 }

Generated on Sun Dec 25 12:14:26 2005 for Berkeley DB 4.4.16 by  doxygen 1.4.2