gnu.lists

Class UnescapedData

Implemented Interfaces:
Externalizable

public class UnescapedData
extends java.lang.Object
implements Externalizable

Used for text that is supposed to be written out verbatim. For example, the the output format is XML, can be used to write a literal '<' as a plain "<", instead of being escaped as "<".

Constructor Summary

UnescapedData()
UnescapedData(String data)

Method Summary

boolean
equals(Object other)
String
getData()
int
hashCode()
void
readExternal(ObjectInput in)
String
toString()
void
writeExternal(ObjectOutput out)

Constructor Details

UnescapedData

public UnescapedData()

UnescapedData

public UnescapedData(String data)

Method Details

equals

public final boolean equals(Object other)

getData

public final String getData()

hashCode

public final int hashCode()

readExternal

public void readExternal(ObjectInput in)
            throws IOException,
                   ClassNotFoundException

toString

public final String toString()

writeExternal

public void writeExternal(ObjectOutput out)
            throws IOException