{
return new EncapsulationFactoryBase(TAG_RMI_CUSTOM_MAX_STREAM_FORMAT.value) {
public Identifiable readContents(InputStream in)
{
byte version = in.read_octet() ;
Identifiable comp = new MaxStreamFormatVersionComponentImpl(version);
return comp ;
}
};
}