public PackageProperties getPackageProperties()
throws InvalidFormatException {
this.throwExceptionIfWriteOnly();
// If no properties part has been found then we create one
if (this.packageProperties == null) {
this.packageProperties = new PackagePropertiesPart(this,
PackagingURIHelper.CORE_PROPERTIES_PART_NAME);
}
return this.packageProperties;
}