All Downloads are FREE. Search and download functionalities are using the official Maven repository.

in.uncod.android.bypass.Document Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package in.uncod.android.bypass;

public class Document {

	Element[] elements;
	
	public Document(Element[] elements) {
		this.elements = elements;
	}
	
	public int getElementCount() {
		return elements.length;
	}
	
	public Element getElement(int pos) {
		return elements[pos];
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy