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

jp.skypencil.findbugs.slf4j.ArrayData Maven / Gradle / Ivy

package jp.skypencil.findbugs.slf4j;

class ArrayData {
	private final int size;
	private boolean hasThrowableAtLast;

	ArrayData(int size) {
		this.size = size;
	}

	int getSize() {
		return size;
	}

	void setThrowableAtLast(boolean hasThrowableAtLast) {
		this.hasThrowableAtLast = hasThrowableAtLast;
	}

	boolean hasThrowableAtLast() {
		return hasThrowableAtLast;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy