src/main/java/com/netflix/imflibrary/st2067_2/CompositionModel_st2067_2_2013.java [159:182]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (markerSequence != null)
        {
            sequenceList.add(parseMarkerSequence(markerSequence, cplEditRate, imfErrorLogger));
        }

        /* Parse rest of the sequences */
        for (Object object : segment.getSequenceList().getAny())
        {
            // Ignore unrecognized Sequence types
            if(!(object instanceof JAXBElement)){
                String details = "";
                if(object instanceof Element)
                {
                    Element element = Element.class.cast(object);
                    details = "Tag: " + element.getTagName() + " URI: " + element.getNamespaceURI();
                }
                imfErrorLogger.addError(IMFErrorLogger.IMFErrors.ErrorCodes.IMF_CPL_ERROR, IMFErrorLogger
                        .IMFErrors.ErrorLevels.NON_FATAL, String.format("Unsupported sequence type or schema %s",
                        details));
                continue;
            }

            // Get the JAXB SequenceType object
            JAXBElement jaxbElement = (JAXBElement)(object);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/netflix/imflibrary/st2067_2/CompositionModel_st2067_2_2016.java [162:185]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (markerSequence != null)
        {
            sequenceList.add(parseMarkerSequence(markerSequence, cplEditRate, imfErrorLogger));
        }

        /* Parse rest of the sequences */
        for (Object object : segment.getSequenceList().getAny())
        {
            // Ignore unrecognized Sequence types
            if(!(object instanceof JAXBElement)){
                String details = "";
                if(object instanceof Element)
                {
                    Element element = Element.class.cast(object);
                    details = "Tag: " + element.getTagName() + " URI: " + element.getNamespaceURI();
                }
                imfErrorLogger.addError(IMFErrorLogger.IMFErrors.ErrorCodes.IMF_CPL_ERROR, IMFErrorLogger
                        .IMFErrors.ErrorLevels.NON_FATAL, String.format("Unsupported sequence type or schema %s",
                        details));
                continue;
            }

            // Get the JAXB SequenceType object
            JAXBElement jaxbElement = (JAXBElement)(object);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



