/// <summary> /// Executes the visitor on the component /// </summary> public void Execute() { _component.Accept(new VisitorDisplay(false)); }
/// <summary> /// executes the resize Visitor /// </summary> public void Execute() { _component.Accept(new VisitorResize(_distance)); }
/// <summary> /// executes the move Visitor /// </summary> public void Execute() { _component.Accept(new VisitorMove(_positionResult)); }
/// <summary> /// calls the visitor on the component /// </summary> public void Execute() { _component.Accept(new VisitorDelete()); }