Here you can find the source of removeQueryCallBody(Node queryElement)
public static Node removeQueryCallBody(Node queryElement)
//package com.java2s; //License from project: Open Source License import org.w3c.dom.Node; public class Main { public static Node removeQueryCallBody(Node queryElement) { if ("QueryRequest".equals(queryElement.getNodeName())) { return queryElement.getFirstChild().getFirstChild(); }/*from w ww .j a va2 s.c o m*/ return null; } }