*
* @param name the name of the library; may be null if a default name is to be used
* @return the empty, in-memory schema library
*/
public static SchemaLibrary createSchemaLibrary( String name ) {
return new InMemorySchemaLibrary(name != null ? name : "In-memory schema library");
}