int count = this.streamReader.getNamespaceCount();
for (int i = 0; i < count; i++) {
GOMNamespace namespace = new GOMNamespace(this.streamReader
.getNamespaceURI(i), this.streamReader
.getNamespacePrefix(i));
entry.addNamespace(namespace);
}
return entry;
}
private GOMFeed startFeedDocument(GOMDocument aDocument)