ToolInputBox=function(_3387){
ToolGeneric.call(this,_3387);
};
ToolInputBox.prototype=new ToolGeneric;
ToolInputBox.prototype.type="ToolInputBox";
ToolInputBox.prototype.execute=function(x,y){
var _338a=new InputBoxFigure();
_338a.setDimension(100,20);
this.palette.workflow.addFigure(_338a,x,y);
var _338b=this.palette.workflow.getBestCompartmentFigure(x,y);
if(_338b){
_338b.addChild(_338a);
}
ToolGeneric.prototype.execute.call(this,x,y);
};

