func (a *XMLAffect) AffectedStopPoints() []*XMLAffectedStopPoint {
    if len(a.affectedStopPoints) == 0 {
        stopPointsNodes := a.findDirectChildrenNodes("StopPoints")
        if stopPointsNodes != nil {
            xmlStopPoints := NewXMLAffectedStopPoint(stopPointsNodes[0])