1 package com
.interrupt
.bookkeeping
.cc
.executor
;
3 import org
.apache
.log4j
.Logger
;
5 import com
.interrupt
.bookkeeping
.cc
.analysis
.DepthFirstAdapter
;
6 import com
.interrupt
.bookkeeping
.cc
.bkell
.Bkell
;
7 import com
.interrupt
.bookkeeping
.cc
.node
.AXmlCommandInput
;
8 import com
.interrupt
.bookkeeping
.cc
.node
.AXmlblock
;
10 public class VisitorFindFirstXMLBlock
extends DepthFirstAdapter
{
13 private Logger logger
= Logger
.getLogger(VisitorFindFirstXMLBlock
.class);
15 private AXmlCommandInput xmlCommandInput
= null;
18 public AXmlCommandInput
getXmlCommandInput() {
19 return xmlCommandInput
;
21 public void setXmlCommandInput(AXmlCommandInput xmlCommandInput
) {
22 this.xmlCommandInput
= xmlCommandInput
;
26 public void caseAXmlCommandInput(AXmlCommandInput node
) {
28 //logger.debug("VisitorFindFirstXMLBlock.caseAXmlCommandInput["+node+"]");
29 this.setXmlCommandInput(node
);