Java XPath Create getXPath()

Here you can find the source of getXPath()

Description

get X Path

License

Open Source License

Declaration

private static ThreadLocal<XPath> getXPath() 

Method Source Code


//package com.java2s;
/*//from  w  w w.  j a  v a2s  . c o m
 * aTunes
 * Copyright (C) Alex Aranda, Sylvain Gaudard and contributors
 *
 * See http://www.atunes.org/wiki/index.php?title=Contributing for information about contributors
 *
 * http://www.atunes.org
 * http://sourceforge.net/projects/atunes
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

import javax.xml.xpath.XPath;

import javax.xml.xpath.XPathFactory;

public class Main {
    private static volatile ThreadLocal<XPath> xPath;

    private static ThreadLocal<XPath> getXPath() {
        if (xPath == null) {
            xPath = new ThreadLocal<XPath>() {
                @Override
                protected XPath initialValue() {
                    return XPathFactory.newInstance().newXPath();
                }
            };
        }
        return xPath;
    }
}

Related

  1. getXPath()
  2. getXPath()
  3. getXpath()
  4. getXPath()
  5. getxPath()
  6. getXPath(Element elt)
  7. getXPath(Element rootElement, Element targetElement, boolean includeElementIndex, Map namespacesMap)
  8. getXPath(NamespaceContext nsContext)
  9. getXPath(Node n)