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

nuggets.benchmark.A Maven / Gradle / Ivy

The newest version!
package nuggets.benchmark;

import java.util.ArrayList;
import java.util.List;


public class A
{
	protected int i;
	
	protected String s;
	
	protected B b;
	
	protected List bs;
	
	public A()
	{
	}
	
	public A(int i, String s, B b, B[] bs)
	{
		this.i = i;
		this.s = s;
		this.b = b;
		if(bs!=null)
		{
			this.bs = new ArrayList();
			for(int j=0; j




© 2015 - 2025 Weber Informatics LLC | Privacy Policy