Initialize
[sdk/ide/product.git] / org.eclipse.jst.pagedesigner / src / org / eclipse / jst / pagedesigner / dtmanager / IDTInfoFactory.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;\r
12 \r
13 import org.w3c.dom.Element;\r
14 \r
15 /**\r
16  * Factory that provides IDTInfo instances.\r
17  * \r
18  * <p><b>Provisional API - subject to change</b></p>\r
19  * \r
20  * @author Ian Trimble - Oracle\r
21  */\r
22 public interface IDTInfoFactory {\r
23 \r
24         /**\r
25          * Gets an IDTInfo instance for the specified Element.\r
26          * \r
27          * @param element Element instance for which to locate and return IDTInfo\r
28          * instance.\r
29          * @return An IDTInfo instance for the specified Element.\r
30          */\r
31         public IDTInfo getDTInfo(Element element);\r
32 \r
33 }\r