FileDocCategorySizeDatePackage
StorageUnitDesc.javaAPI DocExample673Thu Feb 17 20:01:00 GMT 2000InventoryMgmt.StorageUnit

StorageUnitDesc.java

/*----------------------------------------------------------------------------
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;
}