*/
protected Object readResolve() throws InvalidObjectException
{
if (this.getClass() != JRTextAttribute.class)
{
throw new InvalidObjectException("Subclass didn't correctly implement readResolve");
}
JRTextAttribute instance = (JRTextAttribute) instanceMap.get(getName());
if (instance != null)
{
return instance;
}
throw new InvalidObjectException("Unknown attribute name");
}