jdk/src/java.desktop/share/classes/sun/awt/dnd/SunDropTargetContextPeer.java
changeset 32865 f9cb6e427f9e
parent 30470 bd197b8eda21
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
   135 
   135 
   136     /*
   136     /*
   137      * constants used by dropAccept() or dropReject()
   137      * constants used by dropAccept() or dropReject()
   138      */
   138      */
   139 
   139 
   140     protected final static int STATUS_NONE   =  0; // none pending
   140     protected static final int STATUS_NONE   =  0; // none pending
   141     protected final static int STATUS_WAIT   =  1; // drop pending
   141     protected static final int STATUS_WAIT   =  1; // drop pending
   142     protected final static int STATUS_ACCEPT =  2;
   142     protected static final int STATUS_ACCEPT =  2;
   143     protected final static int STATUS_REJECT = -1;
   143     protected static final int STATUS_REJECT = -1;
   144 
   144 
   145     /**
   145     /**
   146      * create the peer
   146      * create the peer
   147      */
   147      */
   148 
   148