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 package com.ibm.icu.dev.tool.layout;
     10 
     11 
     12 public class ScriptModuleWriter extends ModuleWriter
     13 {
     14     public ScriptModuleWriter(ScriptData theScriptData, LanguageData theLanguageData)
     15     {
     16         super();
     17 
     18         scriptData = theScriptData;
     19         languageData = theLanguageData;
     20     }
     21 
     22     protected ScriptData scriptData;
     23     protected LanguageData languageData;
     24 }