super(uri);
}
protected void doSave(OutputStream os, Map options) throws IOException
{
Definition definition = getDefinition();
if (definition != null)
{
Document document = definition.getDocument();
if (document == null)
{
((DefinitionImpl)definition).updateDocument();
document = definition.getDocument();
}
if (definition.getElement() == null)
{
((DefinitionImpl)definition).updateElement();
}
doSerialize(os, document, options);