1 /* 2 ********************************************************************** 3 * Copyright (c) 2004-2006, International Business Machines 4 * Corporation and others. All Rights Reserved. 5 ********************************************************************** 6 * Author: Alan Liu 7 * Created: April 20, 2004 8 * Since: ICU 3.0 9 ********************************************************************** 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