* Creates a {@link ByteCoder} that uses {@link java.beans.XMLEncoder XMLEncoder} and
* {@link java.beans.XMLDecoder XMLDecoder} classes from java.beans. Encoded
* Objects must be JavaBeans.
*/
public static ByteCoder beanXMLByteCoder() {
if(beanXMLByteCoder == null) beanXMLByteCoder = new BeanXMLByteCoder();
return beanXMLByteCoder;
}