source: trunk/gcc/libjava/gnu/java/nio/natByteBufferImpl.cc

Last change on this file was 1389, checked in by bird, 21 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 2.5 KB
Line 
1// natByteBufferImpl.cc
2
3/* Copyright (C) 2002, 2003 Free Software Foundation
4
5 This file is part of libgcj.
6
7This software is copyrighted work licensed under the terms of the
8Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9details. */
10
11#include <config.h>
12
13#include <gcj/cni.h>
14#include <jvm.h>
15
16#include <gnu/java/nio/ByteBufferImpl.h>
17
18JArray<jbyte>*
19gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jbyte>*)
20{
21 return NULL;
22}
23
24JArray<jbyte>*
25gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jshort>*)
26{
27 return NULL;
28}
29
30JArray<jbyte>*
31gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jint>*)
32{
33 return NULL;
34}
35
36JArray<jbyte>*
37gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jlong>*)
38{
39 return NULL;
40}
41
42JArray<jbyte>*
43gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jchar>*)
44{
45 return NULL;
46}
47
48JArray<jbyte>*
49gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jfloat>*)
50{
51 return NULL;
52}
53
54JArray<jbyte>*
55gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jdouble>*)
56{
57 return NULL;
58}
59
60void
61gnu::java::nio::ByteBufferImpl::nio_put_Byte(gnu::java::nio::ByteBufferImpl*, jint, jint, jbyte)
62{
63}
64
65void
66gnu::java::nio::ByteBufferImpl::nio_put_Char(gnu::java::nio::ByteBufferImpl*, jint, jint, jchar)
67{
68}
69
70void
71gnu::java::nio::ByteBufferImpl::nio_put_Short(gnu::java::nio::ByteBufferImpl*, jint, jint, jshort)
72{
73}
74
75void
76gnu::java::nio::ByteBufferImpl::nio_put_Int(gnu::java::nio::ByteBufferImpl*, jint, jint, jint)
77{
78}
79
80void
81gnu::java::nio::ByteBufferImpl::nio_put_Long(gnu::java::nio::ByteBufferImpl*, jint, jint, jlong)
82{
83}
84
85void
86gnu::java::nio::ByteBufferImpl::nio_put_Float(gnu::java::nio::ByteBufferImpl*, jint, jint, jfloat)
87{
88}
89
90void
91gnu::java::nio::ByteBufferImpl::nio_put_Double(gnu::java::nio::ByteBufferImpl*, jint, jint, jdouble)
92{
93}
94
95jbyte
96gnu::java::nio::ByteBufferImpl::nio_get_Byte(gnu::java::nio::ByteBufferImpl*, jint, jint)
97{
98 return 0;
99}
100
101jchar
102gnu::java::nio::ByteBufferImpl::nio_get_Char(gnu::java::nio::ByteBufferImpl*, jint, jint)
103{
104 return ' ';
105}
106
107jshort
108gnu::java::nio::ByteBufferImpl::nio_get_Short(gnu::java::nio::ByteBufferImpl*, jint, jint)
109{
110 return 0;
111}
112
113jint
114gnu::java::nio::ByteBufferImpl::nio_get_Int(gnu::java::nio::ByteBufferImpl*, jint, jint)
115{
116 return 0;
117}
118
119jlong
120gnu::java::nio::ByteBufferImpl::nio_get_Long(gnu::java::nio::ByteBufferImpl*, jint, jint)
121{
122 return 0;
123}
124
125jfloat
126gnu::java::nio::ByteBufferImpl::nio_get_Float(gnu::java::nio::ByteBufferImpl*, jint, jint)
127{
128 return 0.0;
129}
130
131jdouble
132gnu::java::nio::ByteBufferImpl::nio_get_Double(gnu::java::nio::ByteBufferImpl*, jint, jint)
133{
134 return 0.0;
135}
Note: See TracBrowser for help on using the repository browser.