ToolGroup=function(_3ba3){
ToolGeneric.call(this,_3ba3);
this.setTooltip("Form Group");
};
ToolGroup.prototype=new ToolGeneric;
ToolGroup.prototype.type="ToolGroup";
ToolGroup.prototype.execute=function(x,y){
var _3ba6=new GroupFigure();
_3ba6.setDimension(100,60);
this.palette.workflow.addFigure(_3ba6,x,y);
ToolGeneric.prototype.execute.call(this,x,y);
};

