IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
InputStreamAccessor.cs
Go to the documentation of this file.
1using System;
2
4{
5
6#if FIRST_PASS == false && EXPORTER == false && IMPORTER == false
7
11 internal sealed class InputStreamAccessor : Accessor<object>
12 {
13
14 MethodAccessor<Action<object>> close;
15
20 public InputStreamAccessor(AccessorTypeResolver resolver) :
21 base(resolver, "java.io.InputStream")
22 {
23
24 }
25
30 public void InvokeClose(object self) => GetMethod(ref close, nameof(close), typeof(void)).Invoker(self);
31
32 }
33
34#endif
35
36}