本文整理匯總了Java中java.awt.dnd.DragSourceDropEvent.getDropAction方法的典型用法代碼示例。如果您正苦於以下問題:Java DragSourceDropEvent.getDropAction方法的具體用法?Java DragSourceDropEvent.getDropAction怎麽用?Java DragSourceDropEvent.getDropAction使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類java.awt.dnd.DragSourceDropEvent
的用法示例。
在下文中一共展示了DragSourceDropEvent.getDropAction方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: dragDropEnd
import java.awt.dnd.DragSourceDropEvent; //導入方法依賴的package包/類
public void dragDropEnd(DragSourceDropEvent e)
{
if (e.getDropSuccess() == false)
return;
int action = e.getDropAction();
if ((action & DnDConstants.ACTION_MOVE) != 0)
setText("");
}
示例2: dragDropEnd
import java.awt.dnd.DragSourceDropEvent; //導入方法依賴的package包/類
@Override
public void dragDropEnd(final DragSourceDropEvent dsde) {
if (dsde.getDropSuccess() && (dsde.getDropAction() == DnDConstants.ACTION_MOVE)
&& (draggedNodeParent != null)) {
((DefaultTreeModel) tree.getModel()).nodeStructureChanged(draggedNodeParent);
}
}
示例3: dragDropEnd
import java.awt.dnd.DragSourceDropEvent; //導入方法依賴的package包/類
@Override
public void dragDropEnd(DragSourceDropEvent event) {
if (event.getDropSuccess()) {
if (!mDropReceived) {
if ((event.getDropAction() & mAllowedRowDragTypes) == DnDConstants.ACTION_MOVE) {
externalMoveDrop(event.getDragSourceContext().getTransferable());
}
}
}
setSourceDragColumn(null);
}
示例4: dragDropEnd
import java.awt.dnd.DragSourceDropEvent; //導入方法依賴的package包/類
public void dragDropEnd(DragSourceDropEvent dsde) {
if (dsde.getDropSuccess() && dsde.getDropAction()==DnDConstants.ACTION_MOVE && draggedNodeParent != null) {
((DefaultTreeModel)tree.getModel()).nodeStructureChanged(draggedNodeParent);
tree.expandPath(new TreePath(draggedNodeParent.getPath()));
tree.expandPath(new TreePath(draggedNode.getPath()));
}
}
示例5: dragDropEnd
import java.awt.dnd.DragSourceDropEvent; //導入方法依賴的package包/類
public void dragDropEnd(DragSourceDropEvent dsde) {
if (dsde.getDropSuccess()
&& (dsde.getDropAction() == DnDConstants.ACTION_MOVE)) {
((DefaultTreeModel) sourceTree.getModel()).removeNodeFromParent(oldNode);
}
}