Examples of VisualPageListTransferable


Examples of org.pdfsam.guiclient.commons.dnd.transferables.VisualPageListTransferable

  public int getSourceActions(JComponent c) {
      return COPY;
  }
 
  protected Transferable createTransferable(JComponent c) {
    VisualPageListTransferable retVal = null;
    Object[] selectedList = ((JVisualSelectionList)c).getSelectedValues();
    if(selectedList != null && selectedList.length>0){
      VisualPageListItem[] items = new VisualPageListItem[selectedList.length];
      for(int i = 0; i< selectedList.length; i++){
        items[i] = (VisualPageListItem)selectedList[i];
      }
      int[] indexes = ((JVisualSelectionList)c).getSelectedIndices();
      retVal = new VisualPageListTransferable(items, indexes);     
    }
    return retVal;
  }
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.