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:41 bostic Exp $
00008  */
00009 
00010 package collections.ship.sentity;
00011 
00021 public class PartKey {
00022 
00023     private String number;
00024 
00025     public PartKey(String number) {
00026 
00027         this.number = number;
00028     }
00029 
00030     public final String getNumber() {
00031 
00032         return number;
00033     }
00034 
00035     public String toString() {
00036 
00037         return "[PartKey: number=" + number + ']';
00038     }
00039 }

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