IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
BufferedOutputStreamAccessor.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 BufferedOutputStreamAccessor : Accessor<object>
12 {
13
14 MethodAccessor<Func<object, object>> init;
15
20 public BufferedOutputStreamAccessor(AccessorTypeResolver resolver) :
21 base(resolver, "java.io.BufferedOutputStream")
22 {
23
24 }
25
30 public object Init(object self) => GetConstructor(ref init, Resolve("java.io.OutputStream")).Invoker(self);
31
32 }
33
34#endif
35
36}