blob: a7f37c9dc43cb07d08be388d3d2148b92e71a96e [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.internal.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.xml.core.internal.contentmodel.CMDocument {
/**
* A short hand method to get a element declaration for a JSP element.
* JSP declaration class implements HTMLElementDeclaration interface.
* @param elementName java.lang.String
*/
HTMLElementDeclaration getElementDeclaration(String elementName);
}