Skip to main content
summaryrefslogtreecommitdiffstats
blob: 424f073a4d7ab0fe6d41ba5a6d72e0ee96f2d010 (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
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2010.09.20 at 02:02:40 PM MST 
//

package org.eclipse.osee.coverage.event;

import org.eclipse.osee.coverage.model.ICoverage;

public class CoverageChange {

   protected String name;
   protected String guid;
   protected CoverageEventType coverageEventType;

   public CoverageChange(ICoverage coverage, CoverageEventType coverageEventType) {
      this(coverage.getName(), coverage.getGuid(), coverageEventType);
   }

   public CoverageChange(String name, String guid, CoverageEventType coverageEventType) {
      super();
      this.name = name;
      this.guid = guid;
      this.coverageEventType = coverageEventType;
   }

   public String getName() {
      return name;
   }

   public void setName(String value) {
      this.name = value;
   }

   public String getGuid() {
      return guid;
   }

   public void setGuid(String value) {
      this.guid = value;
   }

   public CoverageEventType getEventType() {
      return coverageEventType;
   }

   public void setEventType(CoverageEventType coverageEventType) {
      this.coverageEventType = coverageEventType;
   }

}

Back to the top