return value;
}
- private static String extractText(Element node, String defValue){
+ public static String extractText(Element node, String defValue){
String value = defValue;
if (node != null && node.hasChildNodes()) {
Node valueNode = node.getFirstChild();