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-2004, International Business Machines Corporation and    *
6 * others. All Rights Reserved.                                                *
7 *******************************************************************************
8 *
9 * Created on Dec 09, 2003
10 *
11 *******************************************************************************
12 */
13package com.ibm.icu.dev.tool.layout;
14
15
16public class ThaiStateTableBuilder
17{
18    public static void main(String args[])
19    {
20        ThaiStateTableModuleWriter writer = new ThaiStateTableModuleWriter();
21
22        writer.openFile(args[0]);
23        writer.writeTables();
24        writer.closeFile();
25
26    }
27
28}
29