Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.gjt.sp.jedit.browser
Class VFSBrowser.DirectoryLoadedAWTRequest  view VFSBrowser.DirectoryLoadedAWTRequest download VFSBrowser.DirectoryLoadedAWTRequest.java

java.lang.Object
  extended byorg.gjt.sp.jedit.browser.VFSBrowser.DirectoryLoadedAWTRequest
All Implemented Interfaces:
java.lang.Runnable
Enclosing class:
VFSBrowser

class VFSBrowser.DirectoryLoadedAWTRequest
extends java.lang.Object
implements java.lang.Runnable


Field Summary
(package private)  java.lang.Object[] loadInfo
           
(package private)  java.lang.Object node
           
 
Constructor Summary
(package private) VFSBrowser.DirectoryLoadedAWTRequest(java.lang.Object node, java.lang.Object[] loadInfo)
           
 
Method Summary
 void run()
          This method will be called by whoever wishes to run your class implementing Runnable.
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

node

java.lang.Object node

loadInfo

java.lang.Object[] loadInfo
Constructor Detail

VFSBrowser.DirectoryLoadedAWTRequest

VFSBrowser.DirectoryLoadedAWTRequest(java.lang.Object node,
                                     java.lang.Object[] loadInfo)
Method Detail

run

public void run()
Description copied from interface: java.lang.Runnable
This method will be called by whoever wishes to run your class implementing Runnable. Note that there are no restrictions on what you are allowed to do in the run method, except that you cannot throw a checked exception.

Specified by:
run in interface java.lang.Runnable

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).