This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 207659
Collapse All | Expand All

(-)a/openide.filesystems/src/org/openide/filesystems/FileSystem.java (+30 lines)
Lines 425-430 Link Here
425
    */
425
    */
426
    public abstract FileObject findResource(String name);
426
    public abstract FileObject findResource(String name);
427
427
428
    /** Returns temporary folder if it is avaliable on this file system.
429
     * Method never returns null. IOException is thrown instead.
430
     * @return a file object for temporary folder
431
     */
432
    public FileObject getTempFolder() throws IOException {
433
        throw new IOException("Unsupported operation"); // NOI18N
434
    }
435
    
436
    /** Creates temporary folder in the given parent folder.
437
     * @param parent the parent folder where temporary folder will be created
438
     * @param prefix prefix of the name of created folder
439
     * @param suffix suffix of the name of created folder
440
     * @return new temporary folder
441
     * @throws IOException 
442
     */
443
    public FileObject createTempFolder(FileObject parent, String prefix, String suffix) throws IOException {
444
        throw new IOException("Unsupported operation"); // NOI18N
445
    }
446
    
447
    /** Creates temporary file in the given parent folder.
448
     * @param parent the parent folder where temporary file will be created
449
     * @param prefix prefix of the name of created file
450
     * @param suffix suffix of the name of created file
451
     * @return new temporary file
452
     * @throws IOException 
453
     */
454
    public FileObject createTempFile(FileObject parent, String prefix, String suffix) throws IOException {
455
        throw new IOException("Unsupported operation"); // NOI18N
456
    }
457
        
428
    /** Returns an array of actions that can be invoked on any file in
458
    /** Returns an array of actions that can be invoked on any file in
429
    * this filesystem.
459
    * this filesystem.
430
    * These actions should preferably
460
    * These actions should preferably

Return to bug 207659