fitlibraryGeneric.specify.enumerator.BareEnum 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!
package fitlibraryGeneric.specify.enumerator;
import java.util.List;
public class BareEnum {
private ColourEnum enumeration;
private List list;
private ColourEnum[] array;
public static enum ColourEnum {
RED, GREEN, BLUE, LIGHTRED, BLUE_GREEN
}
public ColourEnum getEnumeration() {
return enumeration;
}
public void setEnumeration(ColourEnum enumeration) {
this.enumeration = enumeration;
}
public ColourEnum[] getArray() {
return array;
}
public void setArray(ColourEnum[] array) {
this.array = array;
}
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
}