commentary (COMMENTARY_FOR_INTERMEDIATE,
"Here is the use of the Tuscany API for creating a DataGraph instance\n\n"+
"DataGraph dataGraph = SDOUtil.createDataGraph();");
DataGraph dataGraph = SDOUtil.createDataGraph();
commentary(COMMENTARY_FOR_INTERMEDIATE,
"Now we create a root object of a selected type for the DataGraph wrapper to contain.\n"+
"This is an example of a DataGraph interface that currently forces us to use the default scope.\n\n"+
"company = dataGraph.createRootObject(SampleInfrastructure.COMPANY_NAMESPACE, \"CompanyType\");");
DataObject company = dataGraph.createRootObject(SampleInfrastructure.COMPANY_NAMESPACE, "CompanyType");
populateGraph(scope, company);
commentary(COMMENTARY_FOR_INTERMEDIATE,
"Since the SDO API doesn't currently have a method for serializing the DataGraph instance\n"+