private String getSchemaURI(XMLNode node) {
   for (DocumentStructureDeclaration declaration : this.otherSchemas) {
     if (declaration.getNamespace().equals(node.getNamespace())) {
       return declaration.getPublicId();
     }
   }
   return "";
 }