exception Uwobo_failure of string;;
+let supported_properties = [
+ "cdata-section-elements";
+ "doctype-public";
+ "doctype-system";
+ "encoding";
+ "indent";
+ "media-type";
+ "method";
+ "omit-xml-declaration";
+ "standalone";
+ "version"
+]
+
+let is_supported_property name = List.mem name supported_properties
+
class threadSafe =
object (self)
* http://cs.unibo.it/helm/.
*)
-exception Uwobo_failure of string;;
+exception Uwobo_failure of string
+
+val supported_properties: string list
+val is_supported_property: string -> bool
class threadSafe:
object