blob: 7c063a1363c7ed90ee28b1f57c0e76d07b679d2d [file] [log] [blame]
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
* Copyright (C) 1998-2005, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* Created on Dec 3, 2003
*
*******************************************************************************
*/
package com.ibm.icu.dev.tool.layout;
public abstract class TagValueData
{
abstract public int getMinValue();
abstract public int getMaxValue();
abstract public String getName(int value);
abstract public String getTag(int value);
abstract public String getTagLabel(int value);
abstract public String makeTag(int value);
}