MCPcopy Create free account
hub / github.com/HumbleUI/Skija / OutputWStream

Class OutputWStream

shared/java/OutputWStream.java:8–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import io.github.humbleui.skija.impl.*;
7
8public class OutputWStream extends WStream {
9 static { Library.staticLoad(); }
10
11 @ApiStatus.Internal
12 public final OutputStream _out;
13
14 @ApiStatus.Internal
15 public static class _FinalizerHolder {
16 public static final long PTR = _nGetFinalizer();
17 }
18
19 public OutputWStream(OutputStream out) {
20 super(_nMake(out), _FinalizerHolder.PTR);
21 Stats.onNativeCall();
22 _out = out;
23 }
24
25 @ApiStatus.Internal public static native long _nGetFinalizer();
26 @ApiStatus.Internal public static native long _nMake(OutputStream out);
27}

Callers

nothing calls this directly

Calls 1

staticLoadMethod · 0.95

Tested by

no test coverage detected