You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: org.eclipse.lemminx/src/main/java/org/eclipse/lemminx/extensions/contentmodel/commands/XMLValidationFileCommand.java
Copy file name to clipboardexpand all lines: org.eclipse.lemminx/src/main/java/org/eclipse/lemminx/extensions/contentmodel/participants/diagnostics/XMLValidator.java
Copy file name to clipboardexpand all lines: org.eclipse.lemminx/src/main/java/org/eclipse/lemminx/extensions/contentmodel/settings/XMLValidationSettings.java
+30
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,8 @@ public class XMLValidationSettings {
26
26
privateXMLNamespacesSettingsnamespaces;
27
27
28
28
privateXMLSchemaSettingsschema;
29
+
30
+
privateXMLDTDSettingsdtd;
29
31
30
32
privatebooleandisallowDocTypeDecl;
31
33
@@ -50,6 +52,7 @@ public XMLValidationSettings() {
50
52
setResolveExternalEntities(false);
51
53
setNamespaces(newXMLNamespacesSettings());
52
54
setSchema(newXMLSchemaSettings());
55
+
setDtd(newXMLDTDSettings());
53
56
setXInclude(newXMLXIncludeSettings());
54
57
}
55
58
@@ -107,6 +110,24 @@ public void setSchema(XMLSchemaSettings schema) {
107
110
this.schema = schema;
108
111
}
109
112
113
+
/**
114
+
* Returns the XML DTD validation settings.
115
+
*
116
+
* @return the XML DTD validation settings.
117
+
*/
118
+
publicXMLDTDSettingsgetDtd() {
119
+
returndtd;
120
+
}
121
+
122
+
/**
123
+
* Set the XML DTD validation settings.
124
+
*
125
+
* @param schema the XML DTD validation settings.
126
+
*/
127
+
publicvoidsetDtd(XMLDTDSettingsdtd) {
128
+
this.dtd = dtd;
129
+
}
130
+
110
131
publicvoidsetNoGrammar(StringnoGrammar) {
111
132
this.noGrammar = noGrammar;
112
133
}
@@ -203,6 +224,7 @@ public XMLValidationSettings merge(XMLValidationSettings settings) {
0 commit comments