blob: 367bfebb24f39ee291027607c4c50dfe5514ab01 [file] [log] [blame]
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html#License
/*
*******************************************************************************
* Copyright (C) 1998-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* Created on Dec 3, 2003
*
*******************************************************************************
*/
package com.ibm.icu.dev.tool.layout;
public abstract class TreeWalker
{
abstract void down(int ch);
abstract void up();
abstract void ligature(int lig);
abstract void done();
}