Initialize
[sdk/ide/product.git] / org.eclipse.jst.pagedesigner / src / org / eclipse / jst / pagedesigner / dtmanager / converter / ITagConverterDecorator.java
1 /*******************************************************************************\r
2  * Copyright (c) 2005 Oracle Corporation.\r
3  * All rights reserved. This program and the accompanying materials\r
4  * are made available under the terms of the Eclipse Public License v1.0\r
5  * which accompanies this distribution, and is available at\r
6  * http://www.eclipse.org/legal/epl-v10.html\r
7  *\r
8  * Contributors:\r
9  *    Ian Trimble - initial API and implementation\r
10  *******************************************************************************/ \r
11 package org.eclipse.jst.pagedesigner.dtmanager.converter;\r
12 \r
13 import org.eclipse.jst.pagedesigner.converter.ITagConverter;\r
14 \r
15 /**\r
16  * Decorates an ITagConverter instance as appropriate (generally\r
17  * client-specific decoration performed after tag conversion).\r
18  * \r
19  * <p><b>Provisional API - subject to change</b></p>\r
20  * \r
21  * @author Ian Trimble - Oracle\r
22  */\r
23 public interface ITagConverterDecorator {\r
24 \r
25         /**\r
26          * Decorates the ITagConverter instance as appropriate.\r
27          * \r
28          * @param tagConverter ITagConverter instance to be decorated.\r
29          */\r
30         public void decorate(ITagConverter tagConverter);\r
31 \r
32 }\r