mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-18 02:08:20 +00:00
Code sanitization
- Removed bad method/class name typos Change-Id: Ie6900e9e3d9ce9b550d2a2442a5dac3f7050a573
This commit is contained in:
@@ -107,17 +107,6 @@ public interface DropTarget {
|
||||
|
||||
/**
|
||||
* Handle an object being dropped on the DropTarget
|
||||
*
|
||||
* @param source DragSource where the drag started
|
||||
* @param x X coordinate of the drop location
|
||||
* @param y Y coordinate of the drop location
|
||||
* @param xOffset Horizontal offset with the object being dragged where the original
|
||||
* touch happened
|
||||
* @param yOffset Vertical offset with the object being dragged where the original
|
||||
* touch happened
|
||||
* @param dragView The DragView that's being dragged around on screen.
|
||||
* @param dragInfo Data associated with the object being dragged
|
||||
*
|
||||
*/
|
||||
void onDrop(DragObject dragObject);
|
||||
|
||||
@@ -137,16 +126,6 @@ public interface DropTarget {
|
||||
/**
|
||||
* Check if a drop action can occur at, or near, the requested location.
|
||||
* This will be called just before onDrop.
|
||||
*
|
||||
* @param source DragSource where the drag started
|
||||
* @param x X coordinate of the drop location
|
||||
* @param y Y coordinate of the drop location
|
||||
* @param xOffset Horizontal offset with the object being dragged where the
|
||||
* original touch happened
|
||||
* @param yOffset Vertical offset with the object being dragged where the
|
||||
* original touch happened
|
||||
* @param dragView The DragView that's being dragged around on screen.
|
||||
* @param dragInfo Data associated with the object being dragged
|
||||
* @return True if the drop will be accepted, false otherwise.
|
||||
*/
|
||||
boolean acceptDrop(DragObject dragObject);
|
||||
|
||||
Reference in New Issue
Block a user