interface HTMLFormControlsCollection {
readonly attribute unsigned long length;
Element item(in unsigned long index);
Element namedItem(in DOMString name);
};
in Java:
public interface HTMLFormControlsCollection {
public int getLength();
public HTMLElement item(int index);
public Object namedItem(String name);
};