javax.swing.plaf.basic
Class BasicDirectoryModel.DoChangeContents

java.lang.Object
  extended byjavax.swing.plaf.basic.BasicDirectoryModel.DoChangeContents
All Implemented Interfaces:
Runnable
Enclosing class:
BasicDirectoryModel

class BasicDirectoryModel.DoChangeContents
extends Object
implements Runnable


Field Summary
private  List addFiles
           
private  int addStart
           
private  int change
           
private  boolean doFire
           
private  int fid
           
private  List remFiles
           
private  int remStart
           
 
Constructor Summary
BasicDirectoryModel.DoChangeContents(List addFiles, int addStart, List remFiles, int remStart, int fid)
           
 
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
 

Field Detail

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
Constructor Detail

BasicDirectoryModel.DoChangeContents

public BasicDirectoryModel.DoChangeContents(List addFiles,
                                            int addStart,
                                            List remFiles,
                                            int remStart,
                                            int fid)
Method Detail

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()