blob: 529dc209599807475bfbaef2b5717574e4950b59 [file] [log] [blame]
package org.metaabm.gen.test;
/**
* Primary Color Java Implementation.
*
* Generated by metaabm system: May 13, 2009 11:53:53 AM PDT in project: org.metaabm.gen.repast.test (testing) */
import static org.junit.Assert.*;
public enum PrimaryColorEnum {
red("Red"), yellow("Yellow"), blue("Blue");
private final String name;
private PrimaryColorEnum(String name) {
this.name = name;
}
public String toString() {
return name;
}
}