Fri, 02 Nov 2001 00:38:49 +0000Added getMethod and getVariable methods to ClassFile, removed release33_beta3-BLD200111021545
tball@netbeans.org [Fri, 02 Nov 2001 00:38:49 +0000] rev 1864
Added getMethod and getVariable methods to ClassFile, removed
unnecessary throws clause, corrected documentation.

Thu, 01 Nov 2001 20:52:46 +0000The home page corrected. release33_beta3-BLD200111020101
mentlicher@netbeans.org [Thu, 01 Nov 2001 20:52:46 +0000] rev 1863
The home page corrected.

Thu, 01 Nov 2001 20:48:24 +0000The private method made package-private.
mentlicher@netbeans.org [Thu, 01 Nov 2001 20:48:24 +0000] rev 1862
The private method made package-private.

Thu, 01 Nov 2001 20:46:14 +0000Apply the same condition for cache.readDir() as in VcsFileSystem.
mentlicher@netbeans.org [Thu, 01 Nov 2001 20:46:14 +0000] rev 1861
Apply the same condition for cache.readDir() as in VcsFileSystem.

Thu, 01 Nov 2001 11:14:51 +0000Do not return null from getActions()
mentlicher@netbeans.org [Thu, 01 Nov 2001 11:14:51 +0000] rev 1860
Do not return null from getActions()
This is a fix of issue #17190.

Thu, 01 Nov 2001 10:39:47 +0000Issue #14101 fixed.
dbalek@netbeans.org [Thu, 01 Nov 2001 10:39:47 +0000] rev 1859
Issue #14101 fixed.

Thu, 01 Nov 2001 10:09:31 +0000Issue #16874 fixed.
dbalek@netbeans.org [Thu, 01 Nov 2001 10:09:31 +0000] rev 1858
Issue #16874 fixed.

Thu, 01 Nov 2001 10:05:51 +0000Changed to ensure compatibility with preprocessor's directives specification
dbalek@netbeans.org [Thu, 01 Nov 2001 10:05:51 +0000] rev 1857
Changed to ensure compatibility with preprocessor's directives specification

Thu, 01 Nov 2001 09:09:30 +0000Commands have defined start time, finish time and execution time (which is finish - start).
mentlicher@netbeans.org [Thu, 01 Nov 2001 09:09:30 +0000] rev 1856
Commands have defined start time, finish time and execution time (which is finish - start).
This is currently for debug purposes (activated by -J-Dnetbeans.vcsdebug=true).

Wed, 31 Oct 2001 22:02:57 +0000A special output displayer process introduced to be able to provide the output data in a reasonable
mentlicher@netbeans.org [Wed, 31 Oct 2001 22:02:57 +0000] rev 1855
A special output displayer process introduced to be able to provide the output data in a reasonable
rate to the AWT thread.
The OOME was thrown before when commands, that produce excessive output were executed.
This was caused by the inability of AWT thread to print the output as fast as it came.
Due to this fact the output was cumulated in this class, that distributed the output data to the AWT thread.
Fixed by storing the output data to a buffer with limited capacity prior giving it to the AWT to display.
When both the buffer and the text area are full of data, only a part of the text area is repainted to aviod
pushing all the data through the text area.
This is a fix of issue #16952.