Path: blob/master/src/java.desktop/unix/native/common/awt/awt_Font.c
41153 views
/*1* Copyright (c) 1995, 2019, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425#include "java_awt_Font.h"26#include "sun_awt_FontDescriptor.h"27#include "sun_awt_PlatformFont.h"282930/*31* Class: java_awt_Font32* Method: initIDs33* Signature: ()V34*/3536/* This function gets called from the static initializer for Font.java37to initialize the fieldIDs for fields that may be accessed from C */3839JNIEXPORT void JNICALL40Java_java_awt_Font_initIDs(JNIEnv *env, jclass cls) {41}4243/*44* Class: sun_awt_FontDescriptor45* Method: initIDs46* Signature: ()V47*/4849/* This function gets called from the static initializer for50FontDescriptor.java to initialize the fieldIDs for fields51that may be accessed from C */5253JNIEXPORT void JNICALL54Java_sun_awt_FontDescriptor_initIDs(JNIEnv *env, jclass cls) {55}5657/*58* Class: sun_awt_PlatformFont59* Method: initIDs60* Signature: ()V61*/6263/* This function gets called from the static initializer for64PlatformFont.java to initialize the fieldIDs for fields65that may be accessed from C */6667JNIEXPORT void JNICALL68Java_sun_awt_PlatformFont_initIDs(JNIEnv *env, jclass cls) {69}707172