* @throws SBMLException
*/
public static void main(String[] args) throws SBMLException, XMLStreamException {
SBMLDocument doc = new SBMLDocument(3, 1);
Model m = doc.createModel("m1");
LayoutModelPlugin elm = new LayoutModelPlugin(m);
m.addExtension(LayoutConstants.getNamespaceURI(m.getLevel(), m.getVersion()), elm);
Layout l1 = elm.createLayout("l1");
l1.createCompartmentGlyph("test");
RenderLayoutPlugin rlp = new RenderLayoutPlugin(l1);
rlp.createLocalRenderInformation("info1");
l1.addExtension(RenderConstants.namespaceURI, rlp);