262263264265266267268
/** * Enumerate the labels of the region. * @return enumeration producing label names */ public Enumeration enumerateObjectLabels () { return names != null ? names.keys () : new ArrayEnumeration (null); }
225226227228229230231
/** * Enumerate the HTML attributes found on this tag. * @return enumeration of the attribute names found on this tag. */ public Enumeration enumerateHTMLAttributes () { return new ArrayEnumeration (htmlAttributes); }