KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > info > monitorenter > util > units > UnitPico


1 /*
2  * UnitPico.java, unit for pico prefix.
3  * Copyright (C) Achim Westermann, created on 12.05.2005, 20:11:17
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18  *
19  * If you modify or optimize the code in a useful way please let me know.
20  * Achim.Westermann@gmx.de
21  *
22  */

23
24 package info.monitorenter.util.units;
25
26 /**
27  * Pico unit, 10 <sup>-12 </sup>.
28  * <p>
29  *
30  * @see info.monitorenter.util.units.AUnit
31  *
32  * @see info.monitorenter.util.units.UnitFactory
33  *
34  * @see info.monitorenter.util.units.IUnitSystem
35  *
36  * @see info.monitorenter.util.units.UnitSystemSI
37  *
38  * @author <a HREF='mailto:Achim.Westermann@gmx.de'>Achim Westermann </a>
39  *
40  * @version $Revision: 1.1 $
41  */

42 public final class UnitPico extends AUnit {
43   /**
44    * Defcon.
45    * <p>
46    *
47    */

48   public UnitPico() {
49     this.m_factor = 0.000000000001;
50     this.m_unitName = "p";
51   }
52 }
53
Popular Tags