1 package org.djunits.unit.unitsystem;
2
3 /**
4 * The international System of Units (SI).
5 * <p>
6 * Copyright (c) 2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7 * BSD-style license. See <a href="http://djunits.org/docs/license.html">DJUNITS License</a>.
8 * <p>
9 * $LastChangedDate: 2015-10-04 20:48:33 +0200 (Sun, 04 Oct 2015) $, @version $Revision: 87 $, by $Author: averbraeck $, initial
10 * version Jun 6, 2014 <br>
11 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
12 */
13 public abstract class SI extends UnitSystem
14 {
15 /** */
16 private static final long serialVersionUID = 20140606L;
17
18 /**
19 * protected constructor to avoid creating other (false) SI unit systems.
20 * @param abbreviationKey the abbreviation of the unit system, such as SI
21 * @param nameKey the name of the unit system, such as SI Base
22 */
23 protected SI(final String abbreviationKey, final String nameKey)
24 {
25 super(abbreviationKey, nameKey);
26 }
27
28 }