blob: e4abe58209404e618983f2289988eba1d14da700 [file] [log] [blame]
package org.eclipse.jst.jsf.common.dom;
/**
* A generic adapter that can adapt some non-DOM
* things to a dom-like structure like an IRegion to a DOM-like structure.
*
* <p><b>Provisional API - subject to change</b></p>
*
* @author cbateman
*
*/
public abstract class DOMAdapter
{
/**
* @return the node type. Conforms to Node.getNodeType.
*/
public abstract short getNodeType();
/**
* @return the name prefix. Conforms to W3C Node.getPrefix()
*/
public abstract String getPrefix();
/**
* @return the local part of the name. Conforms to W3C Node.getLocalName()
*/
public abstract String getLocalName();
/**
* @return the name of the node. Conforms the W3C Node.getNodeName interface
*/
public abstract String getNodeName();
}