/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/
package InventoryMgmt.StorageUnit;
import java.util.Vector;
/** @stereotype description */
public class StorageUnitDesc {
public Vector listStorageUnitsOfThisType() {
return new Vector();
}
private int type;
private String stdExternalDimensions;
private String stdInternalDimensions;
private int stdWeightLimit;
private int tareWeight;
private int capacityWarningThreshold;
}
|