![JAR search and dependency download from the Maven repository](/logo.png)
fitlibraryGeneric.specify.object.GenericObjectContainsListOfGenericArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitlibrary Show documentation
Show all versions of fitlibrary Show documentation
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 java.util.List;
import fitlibrary.specify.eg.Colour;
public class GenericObjectContainsListOfGenericArray {
private Gen gen = new Gen();
public Gen getGen() {
return gen;
}
public void setGen(Gen gen) {
this.gen = gen;
}
public static class Gen {
private List ts;
public List getTs() {
return ts;
}
public void setTs(List ts) {
this.ts = ts;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy