/* * $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.FileFontStrike * @author Levente S\u00e1ntha */ class NativeFileFontStrike { /** * @see sun.font.FileFontStrike#getNullScalerContext(long) */ private static long getNullScalerContext(long arg1) { //todo implement it return 0; } /** * @see sun.font.FileFontStrike#createScalerContext(long, double[], boolean, int, int, boolean, float, float) */ private static long createScalerContext(FileFontStrike instance, long arg1, double[] arg2, boolean arg3, int arg4, int arg5, boolean arg6, float arg7, float arg8) { //todo implement it return 0; } }