blob: e547c93ed18805905e29fa1bc4bfded322e5685b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.html.core.contentmodel;
/**
* JSP extension for CMDocument.
* This interface provides some short hand methods to get declarations
* by a name.
*/
public interface JSPCMDocument extends org.eclipse.wst.common.contentmodel.CMDocument {
/**
* A short hand method to get a element declaration for a JSP element.
* JSP declaration class implements HTMLElementDeclaration interface.
* @return com.ibm.sed.contentmodel.html.HTMLElementDeclaration
* @param elementName java.lang.String
*/
HTMLElementDeclaration getElementDeclaration(String elementName);
}