When parsing a XML doc, XML Parser uses this declaration info.
- "version" stands for a XML standard version which must be included in XML doc.
(maybe, a possible version is 1.0 or 1.1.) - "encoding" stands for a encoding name such as UTF-8, EUC-KR, and UTF-16.
- "standalone" stands for whether to use external DTD or Entity.
If XML doc has an internal DTD, a standalone's value is "yes".
If XML doc is linked to an external DTD or any Entity, a standalone's value is "no".
If "standalone" is dropped, automatically "standalone" is set "no"