* @param names java.util.Iterator
*/
public void getDeclarations(CMNamedNodeMapImpl declarations, Iterator names) {
while (names.hasNext()) {
String attrName = (String) names.next();
HTMLAttributeDeclaration dec = getDeclaration(attrName);
if (dec != null)
declarations.putNamedItem(attrName, dec);
}
}