01: /*
02: *******************************************************************************
03: * Copyright (C) 1998-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07: package com.ibm.icu.dev.tool.layout;
08:
09: public class ScriptModuleWriter extends ModuleWriter {
10: public ScriptModuleWriter(ScriptData theScriptData,
11: LanguageData theLanguageData) {
12: super ();
13:
14: scriptData = theScriptData;
15: languageData = theLanguageData;
16: }
17:
18: protected ScriptData scriptData;
19: protected LanguageData languageData;
20: }
|