blob: 7a3743990fd18872d60ebd2f69e5d7b2101fcfbf [file] [log] [blame]
/**
* Copyright (c) 2005, 2010, Werner Keil, Ikayzo 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, Ikayzo and others - initial API and implementation
*/
package org.eclipse.uomo.units.impl.quantity;
import org.eclipse.uomo.units.impl.BaseQuantity;
import javax.measure.quantity.RadiationDoseAbsorbed;
import javax.measure.Unit;
/**
* Represents the amount of energy deposited per unit of mass.
* The system unit for this quantity is "Gy" (Gray).
*
* @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
* @author <a href="mailto:uomo@catmedia.us">Werner Keil</a>
* @version 1.2, ($Revision: 212 $), $Date: 2010-09-13 23:50:44 +0200 (Mo, 13 Sep 2010) $
*/
public class RadiationDoseAmount extends BaseQuantity<RadiationDoseAbsorbed> {
public RadiationDoseAmount(Number number, Unit<RadiationDoseAbsorbed> unit) {
super(number, unit);
}
}