Package org.buildndeploy.client.ui.file.FileIcon

Examples of org.buildndeploy.client.ui.file.FileIcon.DeleteCallback


  }
 
  public void insert(BlobInfoJS x, int index) {
    FileIcon fileToAdd = new FileIcon(x);
    final ImageDropController dropController = new ImageDropController(fileToAdd);
    fileToAdd.setOnDelete(new DeleteCallback() {
     
      @Override
      public void onDelete() {
        dragController.unregisterDropController(dropController);
      }
View Full Code Here


  // TODO y draggable?
  public FileIcon createFakeIcon() {
    FileIcon fileToAdd = FileIcon.createDummyFileIcon();
    final ImageDropController dropController = new ImageDropController(fileToAdd);
    fileToAdd.setOnDelete(new DeleteCallback() {
     
      @Override
      public void onDelete() {
        dragController.unregisterDropController(dropController);
      }
View Full Code Here

TOP

Related Classes of org.buildndeploy.client.ui.file.FileIcon.DeleteCallback

Copyright © 2018 www.massapicom. 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.