blob: a28914408a67f37004557482e0c7dbb2255417b8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 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.cleanup;
import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocumentRegion;
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
import org.w3c.dom.Node;
public class JSPElementNodeCleanupHandler extends ElementNodeCleanupHandler {
public Node cleanup(Node node) {
/* <jsp:root> should cleanup its descendant nodes */
if(node instanceof IDOMNode) {
IStructuredDocumentRegion region = ((IDOMNode) node).getFirstStructuredDocumentRegion();
if("JSP_ROOT_TAG_NAME".equals(region.getType())) //$NON-NLS-1$
return super.cleanup(node);
}
return node;
}
}