/* no qualifier*/static RevisionName deserialize( byte[] in, int start )
{
// The buffer must be 8 bytes plus 4 bytes long (the revision is a long, and the name is a String
if ( ( in == null ) || ( in.length < 12 + start ) )
{
throw new SerializerCreationException( "Cannot extract a RevisionName from a buffer with not enough bytes" );
}
long revision = LongSerializer.deserialize( in, start );
String name = StringSerializer.deserialize( in, 8 + start );