Class Event
public class Event : Serializable, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBase>, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, ISerializable
- Inheritance
-
Event
- Implements
- Inherited Members
- Extension Methods
Constructors
Event()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public Event()
Event(IJVMBridgeBaseInitializer)
Internal constructor: used internally from JCOBridge
[Obsolete("This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public Event(IJVMBridgeBaseInitializer initializer)
Parameters
initializerIJVMBridgeBaseInitializer
Event(object, int, object)
public Event(object arg0, int arg1, object arg2)
Parameters
Event(object, long, int, int, int, int, int)
public Event(object arg0, long arg1, int arg2, int arg3, int arg4, int arg5, int arg6)
Parameters
Event(object, long, int, int, int, int, int, object)
public Event(object arg0, long arg1, int arg2, int arg3, int arg4, int arg5, int arg6, object arg7)
Parameters
Event(params object[])
Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class
public Event(params object[] args)
Parameters
argsobject[]
Properties
ACTION_EVENT
public static int ACTION_EVENT { get; }
Property Value
ALT_MASK
public static int ALT_MASK { get; }
Property Value
BACK_SPACE
public static int BACK_SPACE { get; }
Property Value
BridgeClassName
Java class name to be instantiated
public override string BridgeClassName { get; }
Property Value
CAPS_LOCK
public static int CAPS_LOCK { get; }
Property Value
CTRL_MASK
public static int CTRL_MASK { get; }
Property Value
DELETE
public static int DELETE { get; }
Property Value
DOWN
public static int DOWN { get; }
Property Value
END
public static int END { get; }
Property Value
ENTER
public static int ENTER { get; }
Property Value
ESCAPE
public static int ESCAPE { get; }
Property Value
F1
public static int F1 { get; }
Property Value
F10
public static int F10 { get; }
Property Value
F11
public static int F11 { get; }
Property Value
F12
public static int F12 { get; }
Property Value
F2
public static int F2 { get; }
Property Value
F3
public static int F3 { get; }
Property Value
F4
public static int F4 { get; }
Property Value
F5
public static int F5 { get; }
Property Value
F6
public static int F6 { get; }
Property Value
F7
public static int F7 { get; }
Property Value
F8
public static int F8 { get; }
Property Value
F9
public static int F9 { get; }
Property Value
GOT_FOCUS
public static int GOT_FOCUS { get; }
Property Value
HOME
public static int HOME { get; }
Property Value
INSERT
public static int INSERT { get; }
Property Value
IsBridgeAbstract
true if the BridgeClassName is an abstract class, i.e. cannot be created an instance
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
true if the BridgeClassName implements Closeable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
true if the BridgeClassName is an interface, i.e. does not have any public constructor
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
true if the BridgeClassName is a static class, i.e. does not have any public constructor
public override bool IsBridgeStatic { get; }
Property Value
KEY_ACTION
public static int KEY_ACTION { get; }
Property Value
KEY_ACTION_RELEASE
public static int KEY_ACTION_RELEASE { get; }
Property Value
KEY_PRESS
public static int KEY_PRESS { get; }
Property Value
KEY_RELEASE
public static int KEY_RELEASE { get; }
Property Value
LEFT
public static int LEFT { get; }
Property Value
LIST_DESELECT
public static int LIST_DESELECT { get; }
Property Value
LIST_SELECT
public static int LIST_SELECT { get; }
Property Value
LOAD_FILE
public static int LOAD_FILE { get; }
Property Value
LOST_FOCUS
public static int LOST_FOCUS { get; }
Property Value
META_MASK
public static int META_MASK { get; }
Property Value
MOUSE_DOWN
public static int MOUSE_DOWN { get; }
Property Value
MOUSE_DRAG
public static int MOUSE_DRAG { get; }
Property Value
MOUSE_ENTER
public static int MOUSE_ENTER { get; }
Property Value
MOUSE_EXIT
public static int MOUSE_EXIT { get; }
Property Value
MOUSE_MOVE
public static int MOUSE_MOVE { get; }
Property Value
MOUSE_UP
public static int MOUSE_UP { get; }
Property Value
NUM_LOCK
public static int NUM_LOCK { get; }
Property Value
PAUSE
public static int PAUSE { get; }
Property Value
PGDN
public static int PGDN { get; }
Property Value
PGUP
public static int PGUP { get; }
Property Value
PRINT_SCREEN
public static int PRINT_SCREEN { get; }
Property Value
RIGHT
public static int RIGHT { get; }
Property Value
SAVE_FILE
public static int SAVE_FILE { get; }
Property Value
SCROLL_ABSOLUTE
public static int SCROLL_ABSOLUTE { get; }
Property Value
SCROLL_BEGIN
public static int SCROLL_BEGIN { get; }
Property Value
SCROLL_END
public static int SCROLL_END { get; }
Property Value
SCROLL_LINE_DOWN
public static int SCROLL_LINE_DOWN { get; }
Property Value
SCROLL_LINE_UP
public static int SCROLL_LINE_UP { get; }
Property Value
SCROLL_LOCK
public static int SCROLL_LOCK { get; }
Property Value
SCROLL_PAGE_DOWN
public static int SCROLL_PAGE_DOWN { get; }
Property Value
SCROLL_PAGE_UP
public static int SCROLL_PAGE_UP { get; }
Property Value
SHIFT_MASK
public static int SHIFT_MASK { get; }
Property Value
TAB
public static int TAB { get; }
Property Value
UP
public static int UP { get; }
Property Value
WINDOW_DEICONIFY
public static int WINDOW_DEICONIFY { get; }
Property Value
WINDOW_DESTROY
public static int WINDOW_DESTROY { get; }
Property Value
WINDOW_EXPOSE
public static int WINDOW_EXPOSE { get; }
Property Value
WINDOW_ICONIFY
public static int WINDOW_ICONIFY { get; }
Property Value
WINDOW_MOVED
public static int WINDOW_MOVED { get; }
Property Value
arg
public object arg { get; set; }
Property Value
clickCount
public int clickCount { get; set; }
Property Value
evt
public Event evt { get; set; }
Property Value
id
public int id { get; set; }
Property Value
key
public int key { get; set; }
Property Value
modifiers
public int modifiers { get; set; }
Property Value
target
public object target { get; set; }
Property Value
when
public long when { get; set; }
Property Value
x
public int x { get; set; }
Property Value
y
public int y { get; set; }
Property Value
Methods
ControlDown()
public bool ControlDown()
Returns
MetaDown()
public bool MetaDown()
Returns
ShiftDown()
public bool ShiftDown()
Returns
Translate(int, int)
public void Translate(int arg0, int arg1)