javax.swing.plaf.basic
Class BasicDirectoryModel.DoChangeContents
java.lang.Object
javax.swing.plaf.basic.BasicDirectoryModel.DoChangeContents
- All Implemented Interfaces:
- Runnable
- Enclosing class:
- BasicDirectoryModel
- class BasicDirectoryModel.DoChangeContents
- extends Object
- implements Runnable
Method Summary |
(package private) void |
cancel()
|
void |
run()
When an object implementing interface Runnable is used
to create a thread, starting the thread causes the object's
run method to be called in that separately executing
thread.
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
addFiles
private List addFiles
remFiles
private List remFiles
doFire
private boolean doFire
fid
private int fid
addStart
private int addStart
remStart
private int remStart
change
private int change
BasicDirectoryModel.DoChangeContents
public BasicDirectoryModel.DoChangeContents(List addFiles,
int addStart,
List remFiles,
int remStart,
int fid)
cancel
void cancel()
run
public void run()
- Description copied from interface:
Runnable
- When an object implementing interface
Runnable
is used
to create a thread, starting the thread causes the object's
run
method to be called in that separately executing
thread.
The general contract of the method run
is that it may
take any action whatsoever.
- Specified by:
run
in interface Runnable
- See Also:
Thread.run()