public String createMetadata(Object nativeItem)
throws CannotDisseminateFormatException {
String fullItem = (String)nativeItem;
int startOffset = fullItem.indexOf(elementStart);
if (startOffset == -1) {
throw new CannotDisseminateFormatException(getSchemaLocation());
}
int endOffset = fullItem.indexOf(elementEnd) + elementEnd.length();
return fullItem.substring(startOffset, endOffset);
}