.standalone()
Table of contents
- 1. Description of the method
- 2.
- 3. Example
Description of the method
Description: | .standalone() method returns the standalone attribute as a string. The value should be either 'yes' or 'no'. As this attribute is given in the XML prolog, context of the rule must be the document root element. |
Available for: | root element |
Parameters: | - |
Return type: | string |
Example
Context: | Message |
OCL: | self.standalone() = 'yes' |
Description: | The example rule checks if the standalone is 'yes'. |
The XML snippet below would pass this check.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <Message xmlns="http://www.XMLdation.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"?> <Header> |
The other snippet below however would not pass this check.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <Message xmlns="http://www.NOT-XMLdation.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"?> <Header> |