mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
|
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
|
|
|
|
#ifndef __org_w3c_dom_events_Event__
|
|
#define __org_w3c_dom_events_Event__
|
|
|
|
#pragma interface
|
|
|
|
#include <java/lang/Object.h>
|
|
extern "Java"
|
|
{
|
|
namespace org
|
|
{
|
|
namespace w3c
|
|
{
|
|
namespace dom
|
|
{
|
|
namespace events
|
|
{
|
|
class Event;
|
|
class EventTarget;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class org::w3c::dom::events::Event : public ::java::lang::Object
|
|
{
|
|
|
|
public:
|
|
virtual ::java::lang::String * getType() = 0;
|
|
virtual ::org::w3c::dom::events::EventTarget * getTarget() = 0;
|
|
virtual ::org::w3c::dom::events::EventTarget * getCurrentTarget() = 0;
|
|
virtual jshort getEventPhase() = 0;
|
|
virtual jboolean getBubbles() = 0;
|
|
virtual jboolean getCancelable() = 0;
|
|
virtual jlong getTimeStamp() = 0;
|
|
virtual void stopPropagation() = 0;
|
|
virtual void preventDefault() = 0;
|
|
virtual void initEvent(::java::lang::String *, jboolean, jboolean) = 0;
|
|
static const jshort CAPTURING_PHASE = 1;
|
|
static const jshort AT_TARGET = 2;
|
|
static const jshort BUBBLING_PHASE = 3;
|
|
static ::java::lang::Class class$;
|
|
} __attribute__ ((java_interface));
|
|
|
|
#endif // __org_w3c_dom_events_Event__
|