Package de.sciss.app

Examples of de.sciss.app.AbstractCompoundEdit.perform()


//            }
//          }
//        }
        edit.addPerform( new EditRemoveSessionObjects( this, scSelAll, collSelection ));
        edit.addPerform( new EditRemoveSessionObjects( this, scAll, collSelection ));
        edit.perform();
        edit.end();
        doc.getUndoManager().addEdit( edit );
//      }
//      finally {
//        doc.bird.releaseExclusive( doors );
View Full Code Here


                  span.getStop() - 1 + span.getLength() ));

        edit  = new BasicCompoundEdit( getValue( NAME ).toString() );
        edit.addPerform( TimelineVisualEdit.select( this, doc, span ));
        edit.addPerform( TimelineVisualEdit.position( this, doc, span.getStart() ));
        edit.perform();
        edit.end();
        doc.getUndoManager().addEdit( edit );
      }
      finally {
        doc.bird.releaseExclusive( Session.DOOR_TIME );
View Full Code Here

          edit.addPerform( new EditPutMapValue( SessionObjectTable.this, map, key, value ));
          addEdit = true;
        }
      }
      if( addEdit ) {
        edit.perform();
        edit.end();
        doc.getUndoManager().addEdit( edit );
      }
    }
  } // class Model
View Full Code Here

        edit.addPerform( new EditAddSessionObjects( this, doc.getMutableReceivers(), collNewRcv ));
//        for( i = 0; i < doc.getSelectedGroups().size(); i++ ) {
//          group  = (SessionGroup) doc.getSelectedGroups().get( i );
//          edit.addPerform( new EditAddSessionObjects( this, group.getReceivers(), collRcv ));
//        }
        edit.perform();
        edit.end();
        doc.getUndoManager().addEdit( edit );
      }
    }
    catch( InstantiationException e1 ) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.