01: /*
02: **********************************************************************
03: * Copyright (c) 2004-2006, International Business Machines
04: * Corporation and others. All Rights Reserved.
05: **********************************************************************
06: * Author: Alan Liu
07: * Created: April 20, 2004
08: * Since: ICU 3.0
09: **********************************************************************
10: */
11: package com.ibm.icu.util;
12:
13: /**
14: * A unit such as length, mass, volume, currency, etc. A unit is
15: * coupled with a numeric amount to produce a Measure.
16: *
17: * @see com.ibm.icu.util.Measure
18: * @author Alan Liu
19: * @stable ICU 3.0
20: */
21: public abstract class MeasureUnit {
22: /**
23: * @internal
24: * @deprecated This API is ICU internal only.
25: */
26: protected MeasureUnit() {
27: };
28: }
|