Back to project page anode.
The source code is released under:
Apache License
If you think the Android project anode listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.w3c.dom; public interface IntegerArray extends PrimitiveArray { public int getLength(); public void setLength(int length); public int getElement(int index); public void setElement(int index, int value); }