/*
* Copyright 2001 Sun Microsystems, Inc. All rights reserved.
* PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
*/
package com.sun.portal.rewriter;
public abstract class AbstractTranslatorHook implements TranslatorHook
{
protected final Translator rootTranslator;
protected AbstractTranslatorHook( final Translator aRootTranslator )
{
rootTranslator = aRootTranslator;
}//constructor
public JSFunctionSpec getJSFunctionSpec()
{
return rootTranslator.getJSFunctionSpec();
}//getJSFunctionSpec()
}//class AbstractTranslatorHook
|