* {@inheritDoc}
*/
public String getMetadataName() {
final Property rawProperty = this.getPropertyList().getProperty(
AxslProperty.METADATA_KEY);
final AxslEnumerated property = (AxslEnumerated) rawProperty;
if (property == null) {
return "";
}
final AxslValue value = property.getValue();
return value.toXslFo();
}