Subversion Repositories DevTools

Rev

Rev 7033 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7033 Rev 7169
Line 23... Line 23...
23
      DB_CANNOT_CONTINUE(1, "Cannot Continue"),
23
      DB_CANNOT_CONTINUE(1, "Cannot Continue"),
24
      DB_PAUSED(2, "Paused"),
24
      DB_PAUSED(2, "Paused"),
25
      DB_ACTIVE(3, "Active"),
25
      DB_ACTIVE(3, "Active"),
26
      DB_IDLE(4, "Idle"),
26
      DB_IDLE(4, "Idle"),
27
      DB_WAITING(5, "Waiting"),
27
      DB_WAITING(5, "Waiting"),
28
      DB_PUBLISHING(6 ,"Publishing")
28
      DB_PUBLISHING(6 ,"Publishing"),
-
 
29
      DB_PLANNING(7 ,"Planning")
29
      ;
30
      ;
30
      
31
      
31
      private int state;
32
      private int state;
32
      private String stateText;
33
      private String stateText;
33
      private BuildState(int state, String text) { this.state = state; stateText = text;}
34
      private BuildState(int state, String text) { this.state = state; stateText = text;}