blob: c2bac2354764c79b3c63c9d072e9d8d84da216b7 [file] [log] [blame]
/**
* Copyright (c) 2005, 2013, 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 org.unitsofmeasurement.quantity.ElectricCapacitance;
import org.unitsofmeasurement.unit.Unit;
/**
* Represents an electric capacitance.
* The metric system unit for this quantity is "F" (Farad).
*
* @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, $Date: 2013-04-28 $
*/
public final class ElectricCapacitanceAmount extends BaseQuantity<ElectricCapacitance> {
public ElectricCapacitanceAmount(Number number, Unit<ElectricCapacitance> unit) {
super(number, unit);
}
}