/* * $Id$ * * Copyright (C) 2003-2015 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package sun.font; /** * @see sun.font.NativeFont * @author Levente S\u00e1ntha */ class NativeNativeFont { /** * @see sun.font.NativeFont#haveBitmapFonts(byte[]) */ private static boolean haveBitmapFonts(byte[] arg1) { //todo implement it return false; } /** * @see sun.font.NativeFont#fontExists(byte[]) */ private static boolean fontExists(byte[] arg1) { //todo implement it return false; } /** * @see sun.font.NativeFont#getFontMetrics(long) */ private static StrikeMetrics getFontMetrics(NativeFont instance, long arg1) { //todo implement it return null; } /** * @see sun.font.NativeFont#getGlyphAdvance(long, int) */ private static float getGlyphAdvance(NativeFont instance, long arg1, int arg2) { //todo implement it return 0; } /** * @see sun.font.NativeFont#getGlyphImage(long, int) */ private static long getGlyphImage(NativeFont instance, long arg1, int arg2) { //todo implement it return 0; } /** * @see sun.font.NativeFont#getGlyphImageNoDefault(long, int) */ private static long getGlyphImageNoDefault(NativeFont instance, long arg1, int arg2) { //todo implement it return 0; } /** * @see sun.font.NativeFont#countGlyphs(byte[], int) */ private static int countGlyphs(NativeFont instance, byte[] arg1, int arg2) { //todo implement it return 0; } }