blob: ced4ce2cee2973ec2e1424876e88f5b2c35d9aaa [file] [log] [blame]
/**
* Copyright (c) 2005, 2014, 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, Ikayzo and others - initial API and implementation
*/
package org.eclipse.uomo.units.impl.quantity;
import org.eclipse.uomo.units.impl.BaseAmount;
import org.unitsofmeasurement.quantity.CatalyticActivity;
import org.unitsofmeasurement.unit.Unit;
/**
* Represents a catalytic activity.
* The metric system unit for this quantity is "kat" (katal).
*
* @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
* @author <a href="mailto:uomo@catmedia.us">Werner Keil</a>
* @version 1.4, $Date: 2014-03-03 $
*/
public final class CatalyticActivityAmount extends BaseAmount<CatalyticActivity> implements CatalyticActivity {
public CatalyticActivityAmount(Number number, Unit<CatalyticActivity> unit) {
super(number, unit);
}
}