]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/units/internal/deprecated/UnitPart.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / units / internal / deprecated / UnitPart.java
1 /*******************************************************************************
2  *  Copyright (c) 2010 Association for Decentralized Information Management in
3  *  Industry THTH ry.
4  *  All rights reserved. This program and the accompanying materials
5  *  are made available under the terms of the Eclipse Public License v1.0
6  *  which accompanies this distribution, and is available at
7  *  http://www.eclipse.org/legal/epl-v10.html
8  *
9  *  Contributors:
10  *      VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
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 }