• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 3, 2003
10  *
11  *******************************************************************************
12  */
13 package com.ibm.icu.dev.tool.layout;
14 
15 
16 public class LigatureModuleWriter extends ModuleWriter
17 {
LigatureModuleWriter()18     public LigatureModuleWriter()
19     {
20         super();
21     }
22 
writeTable(OpenTypeTableWriter tableWriter)23     public void writeTable(OpenTypeTableWriter tableWriter)
24     {
25         tableWriter.writeTable(output);
26     }
27 }