1 26 27 package org.objectweb.util.browser.core.api; 28 29 import org.objectweb.util.browser.api.DropAction; 30 31 38 public interface DropActionFactory { 39 40 46 50 static final String DROP_ACTION_FACTORY = DropActionFactory.class.getName(); 51 52 53 59 66 public DropAction newDropAction(Object object, int dropAction); 67 68 74 public void setClassName(Class theClass, int dropAction); 75 76 83 public String getLabel(int dropAction); 84 85 92 public void setLabel(String label, int dropAction); 93 94 } 95 96 | Popular Tags |