Re: DOM Level 3 Events updated

From the latest draft I retrieved the java bindings

http://www.w3.org/TR/2001/WD-DOM-Level-3-Events-20010410/java-binding.html
then
http://www.w3.org/TR/2001/WD-DOM-Level-3-Events-20010410/java-binding.zip

Upon replacing the full events package and compiling, 
I get the following compilation errors

> org/w3c/dom/events/EventTargetGroup.java:15: cannot resolve symbol
> symbol  : class EventListener  
> location: package dom
> import org.w3c.dom.EventListener;
>                    ^
> org/w3c/dom/events/KeyEvent.java:16: cannot resolve symbol
> symbol  : class UIEvent  
> location: package dom
> import org.w3c.dom.UIEvent;
>                    ^

In each case, the import statement omits the .events subpackage.
Corrected statements follow, compilation is satisfactory, and
corrected files are attached.

org/w3c/dom/events/EventTargetGroup.java:15:
import org.w3c.dom.events.EventListener;

org/w3c/dom/events/KeyEvent.java:16:
import org.w3c.dom.events.UIEvent;

all the best, Don
-- 
Don Brutzman  Naval Postgraduate School, Code UW/Br Root 200  work 831.656.2149
              Monterey California 93943-5000 USA              fax  831.656.3679
Virtual worlds/underwater robots/Internet     http://web.nps.navy.mil/~brutzman

Received on Thursday, 19 April 2001 02:49:27 UTC