< prev index next >

modules/javafx.web/src/main/java/com/sun/javafx/webkit/drt/UIClientImpl.java

Print this page




 162      * {@inheritDoc}
 163      */
 164     @Override
 165     public String[] chooseFile(String initialFileName, boolean multiple, String mimeFilters) {
 166         throw new UnsupportedOperationException("Not supported yet");
 167     }
 168 
 169     /**
 170      * {@inheritDoc}
 171      */
 172     @Override
 173     public void print() {
 174         throw new UnsupportedOperationException("Not supported yet");
 175     }
 176 
 177     /**
 178      * {@inheritDoc}
 179      */
 180     @Override
 181     public void startDrag(WCImage frame, int imageOffsetX, int imageOffsetY,
 182             int eventPosX, int eventPosY, String[] mimeTypes, Object[] values)
 183     {
 184         throw new UnsupportedOperationException("Not supported yet");
 185     }
 186 
 187     /**
 188      * {@inheritDoc}
 189      */
 190     @Override
 191     public void confirmStartDrag() {
 192         throw new UnsupportedOperationException("Not supported yet.");
 193     }
 194 
 195     /**
 196      * {@inheritDoc}
 197      */
 198     @Override
 199     public boolean isDragConfirmed() {
 200         return false;
 201     }
 202 }


 162      * {@inheritDoc}
 163      */
 164     @Override
 165     public String[] chooseFile(String initialFileName, boolean multiple, String mimeFilters) {
 166         throw new UnsupportedOperationException("Not supported yet");
 167     }
 168 
 169     /**
 170      * {@inheritDoc}
 171      */
 172     @Override
 173     public void print() {
 174         throw new UnsupportedOperationException("Not supported yet");
 175     }
 176 
 177     /**
 178      * {@inheritDoc}
 179      */
 180     @Override
 181     public void startDrag(WCImage frame, int imageOffsetX, int imageOffsetY,
 182             int eventPosX, int eventPosY, String[] mimeTypes, Object[] values, boolean isImageSource)
 183     {
 184         throw new UnsupportedOperationException("Not supported yet");
 185     }
 186 
 187     /**
 188      * {@inheritDoc}
 189      */
 190     @Override
 191     public void confirmStartDrag() {
 192         throw new UnsupportedOperationException("Not supported yet.");
 193     }
 194 
 195     /**
 196      * {@inheritDoc}
 197      */
 198     @Override
 199     public boolean isDragConfirmed() {
 200         return false;
 201     }
 202 }
< prev index next >