Here you can find the source of getIndividualPath(Node individual)
public static String getIndividualPath(Node individual)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Node; public class Main { public static String getIndividualPath(Node individual) { String target_source = ""; String file_name = ""; if (individual != null) { target_source = individual.getAttributes().getNamedItem("location").getNodeValue(); file_name = individual.getAttributes().getNamedItem("file").getNodeValue(); return target_source + file_name; }//from w w w.j a va 2 s . c o m return null; } }