< prev index next >

src/java.desktop/unix/native/libawt_xawt/awt/awt_Event.c

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 31,48 **** #ifdef HEADLESS #error This file should not be included in headless library #endif #include "java_awt_Event.h" - #include "jni_util.h" - - #include "awt_Event.h" - - struct EventIDs eventIDs; JNIEXPORT void JNICALL Java_java_awt_Event_initIDs(JNIEnv *env, jclass cls) { - CHECK_NULL(eventIDs.data = (*env)->GetFieldID(env, cls, "data", "J")); - CHECK_NULL(eventIDs.consumed = (*env)->GetFieldID(env, cls, "consumed", "Z")); - CHECK_NULL(eventIDs.id = (*env)->GetFieldID(env, cls, "id", "I")); } --- 31,40 ----
< prev index next >