Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import javax.xml.xpath.XPath;

import javax.xml.xpath.XPathFactory;

public class Main {
    private static XPath X_PATH;

    private static XPath getX_PATH() {
        if (X_PATH == null) {
            X_PATH = XPathFactory.newInstance().newXPath();
        }
        return X_PATH;
    }
}