Lines Matching refs:peer

45 import java.awt.dnd.peer.DropTargetContextPeer;
75 * A boolean constant that requires the peer to wait until the
144 * create the peer
152 * @return the DropTarget associated with this peer
727 private final SunDropTargetContextPeer peer;
745 EventDispatcher(SunDropTargetContextPeer peer,
752 this.peer = peer;
783 synchronized (peer) {
786 peer.previousDA = dropAction;
788 // setup peer context
789 peer.nativeDragContext = nativeCtxt;
790 peer.currentT = formats;
791 peer.currentSA = actions;
792 peer.currentDA = dropAction;
794 peer.dropStatus = STATUS_ACCEPT;
795 peer.dropComplete = false;
798 peer.processEnterMessage(e);
800 peer.dropStatus = STATUS_NONE;
803 setReturnValue(peer.currentDA);
808 synchronized (peer) {
810 boolean operationChanged = peer.previousDA != dropAction;
811 peer.previousDA = dropAction;
813 // setup peer context
814 peer.nativeDragContext = nativeCtxt;
815 peer.currentT = formats;
816 peer.currentSA = actions;
817 peer.currentDA = dropAction;
819 peer.dropStatus = STATUS_ACCEPT;
820 peer.dropComplete = false;
823 peer.processMotionMessage(e, operationChanged);
825 peer.dropStatus = STATUS_NONE;
828 setReturnValue(peer.currentDA);
833 synchronized (peer) {
835 // setup peer context
836 peer.nativeDragContext = nativeCtxt;
838 peer.processExitMessage(e);
843 synchronized (peer) {
845 // setup peer context
846 peer.nativeDragContext = nativeCtxt;
847 peer.currentT = formats;
848 peer.currentSA = actions;
849 peer.currentDA = dropAction;
851 peer.processDropMessage(e);
893 peer.eventProcessed(e, returnValue, dispatcherDone);
902 peer.nativeDragContext = 0;