Initialize
[sdk/ide/product.git] / org.eclipse.jst.pagedesigner / src / org / eclipse / jst / pagedesigner / dom / IDOMRefPosition.java
1 /*******************************************************************************\r
2  * Copyright (c) 2006 Sybase, Inc. and others.\r
3  *\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     Sybase, Inc. - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.eclipse.jst.pagedesigner.dom;\r
13 \r
14 import org.w3c.dom.Node;\r
15 \r
16 /**\r
17  * A IDOMRefPosition locate a position by reference a node in the dom tree. It\r
18  * mean a position after node, before a node, or before anything in a node, or\r
19  * after anything in a node.\r
20  * \r
21  * @author mengbo\r
22  * @version 1.5\r
23  */\r
24 public interface IDOMRefPosition extends IDOMPosition {\r
25         /**\r
26          * \r
27          * @return the reference (wrapped) node\r
28          */\r
29         public Node getReferenceNode();\r
30 }\r