Closedown

This commit is contained in:
boccioli_m
2015-06-17 16:59:53 +02:00
parent 02460dee30
commit fbdb3c1752
3 changed files with 9 additions and 18 deletions

View File

@@ -132,21 +132,13 @@ public class TestingList extends Panel {
//enumeration of possible test statuses: text and related icon
public enum TestStatus {
SUCCESS (0),
FAILURE (1),
PENDING (2),
DISABLED (3),
RUNNING (4);
SUCCESS,
FAILURE,
PENDING,
DISABLED,
RUNNING;
private int value;
private TestStatus(int value) {
this.value = value;
}
public int index(){
return (int) value;
}
public String IconFilename(){
String iconFileName = "";