Skip to main content
summaryrefslogtreecommitdiffstats
blob: 376e9d3c610e4931f94b16761e53ed974c8cdd0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.ats.client.demo;

/**
 * @author Donald G. Dunne
 */
public enum DemoActionableItems {

   Actionable_Items,
   SAW_CSCI,
   SAW_Code,
   Test_Page,
   SAW_Test,
   RunLists,
   SAW_Requirements,
   SAW_HW,
   Adapter,
   Manual,
   Screen,
   Case,
   SAW_SW_Design,
   CIS_CSCI,
   CIS_Code,
   CIS_Test,
   CIS_Requirements,
   CIS_SW_Design,
   Tools,
   Website,
   Reader,
   Timesheet,
   Results_Reporter,
   Processes,
   Coding_Standards,
   Config_Mgmt,
   Reviews,
   New_Employee_Manual,
   Facilities,
   Network,
   Vending_Machines,
   Computers,
   Break_Room,
   Backups;

   public String getName() {
      return name().replaceAll("_", " ");
   }
}

Back to the top