public interface XMLSerializable extends Serializable
This interface identifies classes supporting XML serialization
(XML serialization is still possible for classes not implementing this
interface through dynamic XMLBinding though).
Typically, classes implementing this interface have a protected static
XMLFormat holding their default XML representation.
For example:[code]
public final class Complex implements XMLSerializable {
// Use the cartesien form for the default XML representation.
protected static final XMLFormat
Copyright © 2005–2024 Javolution. All rights reserved.