OSDN Git Service

rename package
[jindolf/JinParser.git] / src / test / java / jp / osdn / jindolf / parser / content / TestListenerRW.java
1 /*
2  * License : The MIT License
3  * Copyright(c) 2018 olyutorskii
4  */
5
6 package jp.osdn.jindolf.parser.content;
7
8 import io.bitbucket.olyutorskii.jiocema.DecodeBreakException;
9
10 /**
11  * Test listener for {@link CharDecodeListener} with Raw-bytes
12  */
13 class TestListenerRW extends TestListener{
14
15     @Override
16     public void rawBytes(byte[] byteArray, int offset, int length)
17             throws DecodeBreakException {
18         append("[RW]");
19         dumpHex(byteArray, offset, length);
20         return;
21     }
22
23 }