Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1e9d2019e93cf7a3e1fb48b0da10901a2d0d9635 (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
/*******************************************************************************
 * 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.config.demo;

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

   Crew_Interface_Requirement,
   Timing_Critical,
   Obsolescence_date,
   Complexity_Factor,
   //
   Weight,
   Content_URL,
   Imported_Paragraph_Number,
   Legacy_Id,
   Level_2_IPT,
   Level_3_IPT,
   //
   Support_IPT,
   System_Security_Requirement,
   Training_Effectivity,
   CSCI,
   Subsystem,
   //
   Qualification_Method,
   Execution_Date,
   Test_Status,
   Test_Pass,
   Test_Fail,
   Version,
   //
   Repository_Type,
   Modification_Flag,
   Test_Log,
   Safety_Criticality;

   @Override
   public String toString() {
      return name().replace("_", " ");
   }
}

Back to the top