ss.prepareAction(MenuActionConstants.ACTION_COPY).actionPerformed(new ActionEvent(ss,0,null));
//NodeListTransferHandler.getCopyAction(ss).actionPerformed(new ActionEvent(this,0,null));
//ss.executeAction(SpreadSheet.COPY);
}
public void doPaste() {
SpreadSheet ss = getActiveSpreadSheet();
if (ss !=null)
ss.prepareAction(MenuActionConstants.ACTION_PASTE).actionPerformed(new ActionEvent(ss,0,null));
//NodeListTransferHandler.getPasteAction(ss).actionPerformed(new ActionEvent(this,0,null));
//ss.executeAction(SpreadSheet.PASTE);
}