/* * $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; import java.awt.geom.Point2D; /** * @see sun.font.SunLayoutEngine * @author Levente S\u00e1ntha */ class NativeSunLayoutEngine { /** * @see sun.font.SunLayoutEngine#initGVIDs() */ private static void initGVIDs() { //todo implement it } /** * @see sun.font.SunLayoutEngine#nativeLayout(sun.font.Font2D, sun.font.FontStrike, float[], int, int, char[], int, int, int, int, int, int, int, java.awt.geom.Point2D.Float, sun.font.GlyphLayout.GVData) */ private static void nativeLayout(Font2D arg1, FontStrike arg2, float[] arg3, int arg4, int arg5, char[] arg6, int arg7, int arg8, int arg9, int arg10, int arg11, int arg12, int arg13, Point2D.Float arg14, GlyphLayout.GVData arg15) { //todo implement it } }