]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/units/internal/deprecated/UnitPart.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / units / internal / deprecated / UnitPart.java
1 /*******************************************************************************\r
2  *  Copyright (c) 2010 Association for Decentralized Information Management in\r
3  *  Industry THTH ry.\r
4  *  All rights reserved. This program and the accompanying materials\r
5  *  are made available under the terms of the Eclipse Public License v1.0\r
6  *  which accompanies this distribution, and is available at\r
7  *  http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  *  Contributors:\r
10  *      VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.databoard.units.internal.deprecated;
13
14
15 public class UnitPart {
16
17         String baseUnit;
18         int exponent;
19         Magnitude magnitude;
20         
21         public UnitPart(String baseUnit, Magnitude magnitude, int exponent) {
22                 this.baseUnit = baseUnit;
23                 this.magnitude = magnitude;
24                 this.exponent = exponent;
25         }
26
27         @Override
28         public String toString() {
29                 StringBuilder b = new StringBuilder();
30                 toString(b);
31                 return b.toString();
32         }
33         
34         public void toString(StringBuilder b) {
35                 b.append(magnitude.symbol);
36                 b.append(baseUnit);
37                 if(exponent != 1)
38                         b.append(Integer.toString(exponent));
39         }
40                 
41 }