01: /*
02: *******************************************************************************
03: * Copyright (C) 1998-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: *
07: * Created on Dec 09, 2003
08: *
09: *******************************************************************************
10: */
11: package com.ibm.icu.dev.tool.layout;
12:
13: public class ThaiStateTableBuilder {
14: public static void main(String args[]) {
15: ThaiStateTableModuleWriter writer = new ThaiStateTableModuleWriter();
16:
17: writer.openFile(args[0]);
18: writer.writeTables();
19: writer.closeFile();
20:
21: }
22:
23: }
|