registerPlatform(platform);
}
}
protected PlatformImpl newPlatform(String id) {
PlatformType node = data.addNewPlatform();
node.setId(id);
// Platforms must have an associated logical test
node.addNewLogicalTest();
// Create the class instance
return new PlatformImpl(this, node);
}