@@ -17,7 +17,7 @@ predicate applyDeviationsAtQueryLevel() {
1717}
1818
1919/** An element which tells the analysis whether to report deviated results. */
20- class CodingStandardsReportDeviatedAlerts extends XmlElement {
20+ class CodingStandardsReportDeviatedAlerts extends XMLElement {
2121 CodingStandardsReportDeviatedAlerts ( ) {
2222 getParent ( ) instanceof CodingStandardsConfig and
2323 hasName ( "report-deviated-alerts" )
@@ -35,7 +35,7 @@ class DeviationPermits extends CodingStandardsConfigSection {
3535}
3636
3737/** A deviation permit record, that is specified by a permit identifier */
38- class DeviationPermit extends XmlElement {
38+ class DeviationPermit extends XMLElement {
3939 DeviationPermit ( ) {
4040 getParent ( ) instanceof DeviationPermits and
4141 hasName ( "deviation-permits-entry" )
@@ -118,7 +118,7 @@ class DeviationPermit extends XmlElement {
118118}
119119
120120/** A deviation record, that is a specified rule or query */
121- class DeviationRecord extends XmlElement {
121+ class DeviationRecord extends XMLElement {
122122 DeviationRecord ( ) {
123123 getParent ( ) instanceof DeviationRecords and
124124 hasName ( "deviations-entry" )
@@ -134,13 +134,13 @@ class DeviationRecord extends XmlElement {
134134
135135 private string getRawPermitId ( ) { result = getAChild ( "permit-id" ) .getTextValue ( ) }
136136
137- private XmlElement getRawRaisedBy ( ) { result = getAChild ( "raised-by" ) }
137+ private XMLElement getRawRaisedBy ( ) { result = getAChild ( "raised-by" ) }
138138
139139 private string getRawRaisedByName ( ) { result = getRawRaisedBy ( ) .getAChild ( "name" ) .getTextValue ( ) }
140140
141141 private string getRawRaisedByDate ( ) { result = getRawRaisedBy ( ) .getAChild ( "date" ) .getTextValue ( ) }
142142
143- private XmlElement getRawApprovedBy ( ) { result = getAChild ( "approved-by" ) }
143+ private XMLElement getRawApprovedBy ( ) { result = getAChild ( "approved-by" ) }
144144
145145 private string getRawApprovedByName ( ) {
146146 result = getRawApprovedBy ( ) .getAChild ( "name" ) .getTextValue ( )
0 commit comments