01: /**
02: *
03: */package net.refractions.udig.core.enums;
04:
05: /**
06: * @author jones
07: */
08: public enum TestResults {
09: /**
10: * Indicates project already exists
11: */
12: EXISTS,
13: /**
14: * Indicates a problem with the entry.
15: */
16: INVALID,
17: /**
18: * An acceptable entry
19: */
20: ACCEPTABLE
21: }
|