1"======================================================================
2|
3|   Java run-time support.  java.util.zip.Inflater native methods.
4|
5|
6 ======================================================================"
7
8
9"======================================================================
10|
11| Copyright 2003 Free Software Foundation, Inc.
12| Written by Paolo Bonzini.
13|
14| This file is part of GNU Smalltalk.
15|
16| The GNU Smalltalk class library is free software; you can redistribute it
17| and/or modify it under the terms of the GNU General Public License
18| as published by the Free Software Foundation; either version 2, or (at
19| your option) any later version.
20|
21| The GNU Smalltalk class library is distributed in the hope that it will be
22| useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
23| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
24| Public License for more details.
25|
26| You should have received a copy of the GNU Lesser General Public License
27| along with the GNU Smalltalk class library; see the file COPYING.  If not,
28| write to the Free Software Foundation, 51 Franklin Street, Fifth Floor,
29| Boston, MA 02110-1301, USA.
30|
31 ======================================================================"
32
33
34!JavaVM methodsFor: 'java.util.zip.Inflater'!
35
36java_util_zip_Inflater_end
37    <javaNativeMethod: #'end()V'
38        for: #{Java.java.util.zip.Inflater} static: false>
39    self notYetImplemented
40!
41
42java_util_zip_Inflater_getAdler
43    <javaNativeMethod: #'getAdler()I'
44        for: #{Java.java.util.zip.Inflater} static: false>
45    self notYetImplemented
46!
47
48java_util_zip_Inflater_getRemaining
49    <javaNativeMethod: #'getRemaining()I'
50        for: #{Java.java.util.zip.Inflater} static: false>
51    self notYetImplemented
52!
53
54java_util_zip_Inflater_getTotalIn
55    <javaNativeMethod: #'getTotalIn()I'
56        for: #{Java.java.util.zip.Inflater} static: false>
57    self notYetImplemented
58!
59
60java_util_zip_Inflater_getTotalOut
61    <javaNativeMethod: #'getTotalOut()I'
62        for: #{Java.java.util.zip.Inflater} static: false>
63    self notYetImplemented
64!
65
66java_util_zip_Inflater_inflate_byteArray: arg1 int: arg2 int: arg3
67    <javaNativeMethod: #'inflate([BII)I'
68        for: #{Java.java.util.zip.Inflater} static: false>
69    self notYetImplemented
70!
71
72java_util_zip_Inflater_init_boolean: arg1
73    <javaNativeMethod: #'init(Z)V'
74        for: #{Java.java.util.zip.Inflater} static: false>
75    self notYetImplemented
76!
77
78java_util_zip_Inflater_reset
79    <javaNativeMethod: #'reset()V'
80        for: #{Java.java.util.zip.Inflater} static: false>
81    self notYetImplemented
82!
83
84java_util_zip_Inflater_setDictionary_byteArray: arg1 int: arg2 int: arg3
85    <javaNativeMethod: #'setDictionary([BII)V'
86        for: #{Java.java.util.zip.Inflater} static: false>
87    self notYetImplemented
88!
89
90java_util_zip_Inflater_setInput_byteArray: arg1 int: arg2 int: arg3
91    <javaNativeMethod: #'setInput([BII)V'
92        for: #{Java.java.util.zip.Inflater} static: false>
93    self notYetImplemented
94! !
95
96