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

org.ssssssss.script.runtime.ExitValue Maven / Gradle / Ivy

The newest version!
package org.ssssssss.script.runtime;

public class ExitValue {

	private Object[] values;

	public ExitValue() {
		this(new Object[0]);
	}

	public ExitValue(Object[] values) {
		this.values = values;
	}

	public Object[] getValues() {
		return values;
	}

	public int getLength(){
		return values.length;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy