/**
* @see nexj.core.meta.integration.format.xml.schema.XSDSchemaExporter.FormatStringExporter#export(java.lang.String, nexj.core.util.XMLWriter)
*/
public void export(String sFormat, XMLWriter writer) throws IOException
{
BooleanFormat fmt = new BooleanFormat(sFormat);
writeEnumerationValues(fmt.getTrueValues(), writer);
writeEnumerationValues(fmt.getFalseValues(), writer);
}