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

de.tsl2.nano.autotest.Construction Maven / Gradle / Ivy

The newest version!
package de.tsl2.nano.autotest;

import java.lang.reflect.Constructor;

public class Construction {
	public transient V instance;
	public Constructor constructor;
	public Object[] parameter;
	
	public Construction(V instance) {
		super();
		this.instance = instance;
	}

	public Construction(V instance, Constructor constructor, Object[] parameter) {
		this.instance = instance;
		this.constructor = constructor;
		this.parameter = parameter;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy