1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html#License
3/*
4 *******************************************************************************
5 * Copyright (C) 1998-2005, International Business Machines Corporation and    *
6 * others. All Rights Reserved.                                                *
7 *******************************************************************************
8 *
9 * Created on Dec 3, 2003
10 *
11 *******************************************************************************
12 */
13
14package com.ibm.icu.dev.tool.layout;
15
16public abstract class TagValueData
17{
18    abstract public int getMinValue();
19    abstract public int getMaxValue();
20
21    abstract public String getName(int value);
22    abstract public String getTag(int value);
23    abstract public String getTagLabel(int value);
24    abstract public String makeTag(int value);
25}
26