CreateComplexProperty method

  1. @override
OccurrenceInfo? CreateComplexProperty(
  1. String xmlElementName
)
override
Creates the complex property. Name of the XML element.

Implementation

@override
OccurrenceInfo? CreateComplexProperty(String xmlElementName) {
  if (xmlElementName == XmlElementNames.Occurrence) {
    return new OccurrenceInfo();
  } else {
    return null;
  }
}