We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexSuggestions & BugsWebsite,  Documentation,  Book Bugs › documentation error for keyword "super"
Page Index Toggle Pages: 1
documentation error for keyword "super" (Read 649 times)
documentation error for keyword "super"
Feb 20th, 2008, 7:43pm
 
part of it reads as follows:

Name   super

Examples

   // This example is a code fragment,
   // it will not compile on its own.

   // Create the Button subclass from
   // the DragDrop class. DragDrop becomes
   // the superclass of Button.
   class DragDrop extends Button {
     int xoff, yoff;
     DragDrop(int x, int y) {
       // Runs the superclass' constructor
       .
       .
       .

the middle portion it should read:

       .
       .
       .
   // Create the DragDrop subclass from
   // the Button class. Button becomes
   // the superclass of DragDrop.
       .
       .
       .


js:)
Re: documentation error for keyword "super&qu
Reply #1 - Mar 27th, 2008, 6:23am
 
Yes, thanks for catching that. Will be corrected for the next release.
Page Index Toggle Pages: 1