blob: 713245f4fcaaed0c3b5d16076b626cfe6328e169 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 Oracle Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Ian Trimble - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.pagedesigner.dtmanager.converter;
import org.eclipse.jst.pagedesigner.converter.ITagConverter;
/**
* Decorates an ITagConverter instance as appropriate (generally
* client-specific decoration performed after tag conversion).
*
* <p><b>Provisional API - subject to change</b></p>
*
* @author Ian Trimble - Oracle
*/
public interface ITagConverterDecorator {
/**
* Decorates the ITagConverter instance as appropriate.
*
* @param tagConverter ITagConverter instance to be decorated.
*/
public void decorate(ITagConverter tagConverter);
}