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

fitlibraryGeneric.specify.object.NestedGenericObjects Maven / Gradle / Ivy

Go to download

FitLibrary provides general-purpose fixtures (and runners) for storytests with Fit and FitNesse.

The newest version!
/*
 * Copyright (c) 2006 Rick Mugridge, www.RimuResearch.com
 * Released under the terms of the GNU General Public License version 2 or later.
 * Written: 24/09/2006
*/

package fitlibraryGeneric.specify.object;

import fitlibrary.specify.eg.Colour;

public class NestedGenericObjects {
	private Gen gen = new Gen();
	
	public Gen getGen() {
		return gen;
	}
	public void setGen(Gen gen) {
		this.gen = gen;
	}
	public static class Gen  {
		private Gen2 t;

		public Gen2 getT() {
			return t;
		}
		public void setT(Gen2 t) {
			this.t = t;
		}
	}
	public static class Gen2  {
		private V v;

		public V getV() {
			return v;
		}
		public void setV(V t) {
			this.v = t;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy