org.openide.filesystems
Class FileRenameEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--org.openide.filesystems.FileEvent
              |
              +--org.openide.filesystems.FileRenameEvent
All Implemented Interfaces:
Serializable

public class FileRenameEvent
extends FileEvent

Event indicating a file rename.

See Also:
Serialized Form

Fields inherited from class java.util.EventObject
source
 
Constructor Summary
FileRenameEvent(FileObject src, FileObject file, String name, String ext)
          Creates new FileRenameEvent, specifying an event location.
FileRenameEvent(FileObject src, FileObject file, String name, String ext, boolean expected)
          Creates new FileRenameEvent, specifying an event location.
FileRenameEvent(FileObject src, String name, String ext)
          Creates new FileRenameEvent.
 
Method Summary
 String getExt()
          Get original extension of the file.
 String getName()
          Get original name of the file.
 
Methods inherited from class org.openide.filesystems.FileEvent
getFile, getTime, isExpected, toString
 
Methods inherited from class java.util.EventObject
getSource
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FileRenameEvent

public FileRenameEvent(FileObject src,
                       String name,
                       String ext)
Creates new FileRenameEvent. The FileObject where the action took place is assumed to be the same as the source object.
Parameters:
src - source file which sent this event
name - name of the attribute
oldValue - old value of the attribute
newValue - new value of the attribute

FileRenameEvent

public FileRenameEvent(FileObject src,
                       FileObject file,
                       String name,
                       String ext)
Creates new FileRenameEvent, specifying an event location.
Parameters:
src - source file which sent this event
file - file object where the action took place
name - name of the attribute
oldValue - old value of the attribute
newValue - new value of the attribute

FileRenameEvent

public FileRenameEvent(FileObject src,
                       FileObject file,
                       String name,
                       String ext,
                       boolean expected)
Creates new FileRenameEvent, specifying an event location.
Parameters:
src - source file which sent this event
file - file object where the action took place
name - name of the attribute
oldValue - old value of the attribute
newValue - new value of the attribute
expected - sets flag whether the value was expected
Method Detail

getName

public String getName()
Get original name of the file.
Returns:
Name of the file.

getExt

public String getExt()
Get original extension of the file.
Returns:
Extension of the file.


Built on February 22 2001.  |  Portions Copyright 1997-2000 Sun Microsystems, Inc. All rights reserved.