Home | History | Annotate | Download | only in layout
      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  */
     13 package com.ibm.icu.dev.tool.layout;
     14 
     15 public class ThaiStateTableModuleWriter extends ModuleWriter
     16 {
     17     public ThaiStateTableModuleWriter()
     18     {
     19         super();
     20     }
     21 
     22     public void writeTables()
     23     {
     24         writeHeader(null, includeFiles);
     25 
     26         ThaiCharacterClasses.writeClassTable(output);
     27         ThaiStateTable.writeStateTable(output);
     28 
     29         writeTrailer();
     30     }
     31 
     32     private static final String[] includeFiles = {"LETypes.h", "ThaiShaping.h"};
     33 }