< 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, 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 }


 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             boolean isImageSource, String imageFileExt)
 184     {
 185         throw new UnsupportedOperationException("Not supported yet");
 186     }
 187 
 188     /**
 189      * {@inheritDoc}
 190      */
 191     @Override
 192     public void confirmStartDrag() {
 193         throw new UnsupportedOperationException("Not supported yet.");
 194     }
 195 
 196     /**
 197      * {@inheritDoc}
 198      */
 199     @Override
 200     public boolean isDragConfirmed() {
 201         return false;
 202     }
 203 }
< prev index next >