Here you can find the source of isInclude(Node node)
public static boolean isInclude(Node node)
//package com.java2s; /******************************************************************************* * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc. * Distributed under license by Red Hat, Inc. All rights reserved. * This program is 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:// w w w . ja v a 2 s . co m * Exadel, Inc. and Red Hat, Inc. - initial API and implementation ******************************************************************************/ import org.w3c.dom.Node; public class Main { public static boolean isInclude(Node node) { if (node != null && node.getNodeType() == Node.ELEMENT_NODE) { return node.getNodeName().indexOf("jsp:include") >= 0 || node.getNodeName().indexOf("jsp:directive.include") >= 0; //$NON-NLS-1$ //$NON-NLS-2$ } return false; } }