在编写xsd (xml schedma)文件时,不能使用xml注释,否则会导致NetBeans不能有代码提示功能
<!—这种注释,会导致NetBeans没有代码提示功能-->
可能使用schema规定的文档化标签
<xsd:annotation>
<xsd:documentation>
文档才可以自动提示
</xsd:documentation>
</xsd:annotation>