You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VDragEventServerCallback.java 247B

123456789101112
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client.ui.dd;
  5. import com.vaadin.terminal.gwt.client.UIDL;
  6. public interface VDragEventServerCallback {
  7. public void handleResponse(boolean accepted, UIDL response);
  8. }