/* * $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 com.sun.java.util.jar.pack; import java.nio.ByteBuffer; /** * @see com.sun.java.util.jar.pack.NativeUnpack */ class NativeNativeUnpack { /** * @see com.sun.java.util.jar.pack.NativeUnpack#initIDs() */ private static void initIDs() { //todo implement it } /** * @see com.sun.java.util.jar.pack.NativeUnpack#start(java.nio.ByteBuffer, long) */ private static long start(NativeUnpack instance, ByteBuffer arg1, long arg2) { //todo implement it return 0; } /** * @see com.sun.java.util.jar.pack.NativeUnpack#getNextFile(java.lang.Object[]) */ private static boolean getNextFile(NativeUnpack instance, Object[] arg1) { //todo implement it return false; } /** * @see com.sun.java.util.jar.pack.NativeUnpack#getUnusedInput() */ private static ByteBuffer getUnusedInput(NativeUnpack instance) { //todo implement it return null; } /** * @see com.sun.java.util.jar.pack.NativeUnpack#finish() */ private static long finish(NativeUnpack instance) { //todo implement it return 0; } /** * @see com.sun.java.util.jar.pack.NativeUnpack#setOption(java.lang.String, java.lang.String) */ private static boolean setOption(NativeUnpack instance, String arg1, String arg2) { //todo implement it return false; } /** * @see com.sun.java.util.jar.pack.NativeUnpack#getOption(java.lang.String) */ private static String getOption(NativeUnpack instance, String arg1) { //todo implement it return null; } }