1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2010 Oracle. All rights reserved.
*
* $Id: Weight.java,v 1.11.2.2 2010/01/04 15:30:26 cwl Exp $
*/
package collections.ship.sentity;
import java.io.Serializable;
/**
* Weight represents a weight amount and unit of measure.
*
* <p> In this sample, Weight is embedded in part data values which are stored
* as Java serialized objects; therefore Weight must be Serializable. </p>
*
* @author Mark Hayes
*/
public class Weight implements Serializable {
public final static String GRAMS = "grams";
public final static String OUNCES = "ounces";
private double amount;
private String units;
public Weight(double amount, String units) {
this.amount = amount;
this.units = units;
}
public final double getAmount() {
return amount;
}
public final String getUnits() {
return units;
}
public String toString() {
return "[" + amount + ' ' + units + ']';
}
}
|