/*
* this method prints the XML step attribute.
*/
private Element printXMLstep() {
Element stepElem = new Element( "step" );
stepElem.addAttribute( "executeIn", getThreadName() );
stepElem.addContent( printXMLrequest() );
stepElem.addContent( printXMLresponse() );
return stepElem;
}
/*