metasim     00/11/16 14:38:34

  Modified:    src/antidote ChangeLog README
  Log:
  Changed mechanism by which the PropertyEditor editor is instantiated so that 
it
  uses whatever class is retured by BeanDescriptor.getCustomizerClass() rather
  than assuming DynamicCustomizer. This will allow BeanSpecific customizers to 
be
  used in leu of the DynamicCustomizer.
  
  Also finally figured out the IllegalAccessException problem with calling the
  NodeList methods in the ACSTreeNodeElement classes, which turned out only to
  happen when jikes was used for compiling. Implemented a work around.
  
  Revision  Changes    Path
  1.7       +10 -0     jakarta-ant/src/antidote/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/antidote/ChangeLog,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ChangeLog 2000/11/16 18:32:18     1.6
  +++ ChangeLog 2000/11/16 22:38:34     1.7
  @@ -1,5 +1,15 @@
   2000-11-16  Simeon H.K. Fitch  <[EMAIL PROTECTED]>
   
  +     * org/apache/tools/ant/gui/acs/ACSTreeNodeElement.java: Fixed
  +     nasty java.lang.IllegalAccessException bug that I thought was
  +     related to Java 1.3 Blackdown RC1, but wasn't. It was related to
  +     using Jikes, which interprests method resolution differently than
  +     javac, resulting in a call trying to access a private method
  +     implementation of a public interface.
  +
  +     * org/apache/tools/ant/gui/ResourceManager.java: Added convenience
  +     method for getting resource images for a given class.
  +
        * org/apache/tools/ant/gui/AntAction.java: Added toggle property.
   
        * org/apache/tools/ant/gui/ActionManager.java: Added ability to
  
  
  
  1.2       +1 -2      jakarta-ant/src/antidote/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/antidote/README,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- README    2000/11/16 20:02:40     1.1
  +++ README    2000/11/16 22:38:34     1.2
  @@ -48,8 +48,7 @@
     Running
     -------
   
  -  Antidote requires at least Java 1.2 to run. It will *not* work with JVM
  -  version Blackdown-1.3.0-RC1, but Blackdown-1.3.0-FCS does work. So upgrade.
  +  Antidote requires at least Java 1.2 to run. 
   
     Upon successful building of Ant and Antidote (in that order), go to
     ~/build/ant/bin and run "antidote". You will probably have to set the
  
  
  

Reply via email to