blob: f248ac315ed20c0e060baef7103108d2ccbec2c7 [file] [log] [blame]
/**
* Copyright (c) 2005, 2013, Werner Keil and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Werner Keil, Jean-Marie Dautelle - initial API and implementation
*/
package org.eclipse.uomo.units.impl.quantity;
import org.eclipse.uomo.units.impl.BaseAmount;
import org.unitsofmeasurement.quantity.Mass;
import org.unitsofmeasurement.unit.Unit;
/**
* Represents the measure of the quantity of matter that a body or an object contains.
* The mass of the body is not dependent on gravity and therefore is different from but
* proportional to its weight.
* The metric system unit for this quantity is "kg" (kilogram).
*
* @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
* @author <a href="mailto:uomo@catmedia.us">Werner Keil</a>
* @version 1.6, $Date: 2013-05-21 $
*/
public final class MassAmount extends BaseAmount<Mass> implements Mass {
public MassAmount(Number number, Unit<Mass> unit) {
super(number, unit);
}
}