@@ -17,7 +17,7 @@ predicate applyDeviationsAtQueryLevel() {
17
17
}
18
18
19
19
/** An element which tells the analysis whether to report deviated results. */
20
- class CodingStandardsReportDeviatedAlerts extends XMLElement {
20
+ class CodingStandardsReportDeviatedAlerts extends XmlElement {
21
21
CodingStandardsReportDeviatedAlerts ( ) {
22
22
getParent ( ) instanceof CodingStandardsConfig and
23
23
hasName ( "report-deviated-alerts" )
@@ -35,7 +35,7 @@ class DeviationPermits extends CodingStandardsConfigSection {
35
35
}
36
36
37
37
/** A deviation permit record, that is specified by a permit identifier */
38
- class DeviationPermit extends XMLElement {
38
+ class DeviationPermit extends XmlElement {
39
39
DeviationPermit ( ) {
40
40
getParent ( ) instanceof DeviationPermits and
41
41
hasName ( "deviation-permits-entry" )
@@ -118,7 +118,7 @@ class DeviationPermit extends XMLElement {
118
118
}
119
119
120
120
/** A deviation record, that is a specified rule or query */
121
- class DeviationRecord extends XMLElement {
121
+ class DeviationRecord extends XmlElement {
122
122
DeviationRecord ( ) {
123
123
getParent ( ) instanceof DeviationRecords and
124
124
hasName ( "deviations-entry" )
@@ -134,13 +134,13 @@ class DeviationRecord extends XMLElement {
134
134
135
135
private string getRawPermitId ( ) { result = getAChild ( "permit-id" ) .getTextValue ( ) }
136
136
137
- private XMLElement getRawRaisedBy ( ) { result = getAChild ( "raised-by" ) }
137
+ private XmlElement getRawRaisedBy ( ) { result = getAChild ( "raised-by" ) }
138
138
139
139
private string getRawRaisedByName ( ) { result = getRawRaisedBy ( ) .getAChild ( "name" ) .getTextValue ( ) }
140
140
141
141
private string getRawRaisedByDate ( ) { result = getRawRaisedBy ( ) .getAChild ( "date" ) .getTextValue ( ) }
142
142
143
- private XMLElement getRawApprovedBy ( ) { result = getAChild ( "approved-by" ) }
143
+ private XmlElement getRawApprovedBy ( ) { result = getAChild ( "approved-by" ) }
144
144
145
145
private string getRawApprovedByName ( ) {
146
146
result = getRawApprovedBy ( ) .getAChild ( "name" ) .getTextValue ( )
0 commit comments