//@olsen: added: initialize JDO meta data
JDOMetaData jdoMetaData;
if (jdoMetaDataProperties != null) {
printMessage("using JDO meta-data from properties");//NOI18N
jdoMetaData = new JDOMetaDataPropertyImpl(jdoMetaDataProperties, this.outMessages);
} else {
printMessage("using JDO meta-data from Model.Enhancer");//NOI18N
jdoMetaData = new JDOMetaDataModelImpl(Model.ENHANCER, this.outMessages);
}
//@olsen: added support for timing statistics