/* * $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.awt.image; import java.awt.image.IndexColorModel; /** * @see sun.awt.image.ImageRepresentation * @author Levente S\u00e1ntha */ class NativeImageRepresentation { /** * @see sun.awt.image.ImageRepresentation#initIDs() */ private static void initIDs() { //todo implement it } /** * @see sun.awt.image.ImageRepresentation#setICMpixels(int, int, int, int, int[], byte[], int, int, sun.awt.image.IntegerComponentRaster) */ private static void setICMpixels(ImageRepresentation instance, int arg1, int arg2, int arg3, int arg4, int[] arg5, byte[] arg6, int arg7, int arg8, IntegerComponentRaster arg9) { //todo implement it } /** * @see sun.awt.image.ImageRepresentation#setBytePixels(int, int, int, int, byte[], int, int, sun.awt.image.ByteComponentRaster, int) */ private static void setBytePixels(ImageRepresentation instance, int arg1, int arg2, int arg3, int arg4, byte[] arg5, int arg6, int arg7, ByteComponentRaster arg8, int arg9) { //todo implement it } /** * @see sun.awt.image.ImageRepresentation#setDiffICM(int, int, int, int, int[], int, int, java.awt.image.IndexColorModel, byte[], int, int, sun.awt.image.ByteComponentRaster, int) */ private static int setDiffICM(ImageRepresentation instance, int arg1, int arg2, int arg3, int arg4, int[] arg5, int arg6, int arg7, IndexColorModel arg8, byte[] arg9, int arg10, int arg11, ByteComponentRaster arg12, int arg13) { //todo implement it return 0; } }