}
@Override
protected DecodeResult postDecode(DecodeContext cxt, IReadableBitBuffer input,
DecodeParameters paras, DecodeResult result) throws DecodeException {
DecodeResult ret = super.postDecode(cxt, input, paras, result);
if (ret.getValue() != null) {
//设置chunkLength
IContainerValue value = (IContainerValue)ret.getValue();
IValue lenValue = value.getField(HTTP_CHUNK_LENGTH_LINE__CHUNK_LENGTH);
IIntegerValue intValue = (IIntegerValue)cxt.getFieldStackMap().peekField(
StackFields.CHUNK_LENGTH);
if (intValue == null) {
intValue = getPModule().getFactory().createInteger();