Java XML Node Value Check isInclude(Node node)

Here you can find the source of isInclude(Node node)

Description

is Include

License

Open Source License

Declaration

public static boolean isInclude(Node node) 

Method Source Code

//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;
    }
}

Related

  1. isEqual(Node a, Node b)
  2. isExpanded(Node node)
  3. isFiltered(Node node)
  4. isHidden(Node node)
  5. isIgnorable(Node n)
  6. isInlineNode(@Nullable final Node aNode)
  7. isInsertNode(Node n)
  8. isJunk(Node node)
  9. isLeaf(Node node)