1 | abstract sclass AbstractOutputStream extends OutputStream { |
2 | public void write(int b) throws IOException { |
3 | write(new byte[] { (byte) b }, 0, 1); |
4 | } |
5 | |
6 | public void write(byte[] b) throws IOException { |
7 | write(b, 0, l(b)); |
8 | } |
9 | |
10 | public abstract void write(byte[] buf, int ofs, int len) throws IOException; |
11 | } |
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1009774 |
Snippet name: | AbstractOutputStream - leaves only write(byte[], int, int) undefined |
Eternal ID of this version: | #1009774/3 |
Text MD5: | 2a1535cf9c615bc4d6d609d352140cd7 |
Author: | stefan |
Category: | javax / audio |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2017-08-16 17:35:58 |
Source code size: | 332 bytes / 11 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 492 / 1101 |
Version history: | 2 change(s) |
Referenced in: | [show references] |