| 1 |  | import java.util.Date; | 
            
  
    | 2 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 20 (20) | Complexity: 10 | Complexity Density: 1 |  | 
  
  
    | 3 |  | public class BuildInfo { | 
            
  
    | 4 |  | String groupId; | 
            
  
    | 5 |  | String artifactId; | 
            
  
    | 6 |  | String version; | 
            
  
    | 7 |  | Date timestamp; | 
            
  
    | 8 |  | int buildNumber; | 
            
  
    | 9 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 10 | 0 |  public String getGroupId() {... | 
            
  
    | 11 | 0 | return groupId; | 
            
  
    | 12 |  | } | 
            
  
    | 13 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 14 | 0 |  public void setGroupId(String groupId) {... | 
            
  
    | 15 | 0 | this.groupId = groupId; | 
            
  
    | 16 |  | } | 
            
  
    | 17 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 18 | 0 |  public String getArtifactId() {... | 
            
  
    | 19 | 0 | return artifactId; | 
            
  
    | 20 |  | } | 
            
  
    | 21 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 22 | 0 |  public void setArtifactId(String artifactId) {... | 
            
  
    | 23 | 0 | this.artifactId = artifactId; | 
            
  
    | 24 |  | } | 
            
  
    | 25 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 26 | 0 |  public String getVersion() {... | 
            
  
    | 27 | 0 | return version; | 
            
  
    | 28 |  | } | 
            
  
    | 29 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 30 | 0 |  public void setVersion(String version) {... | 
            
  
    | 31 | 0 | this.version = version; | 
            
  
    | 32 |  | } | 
            
  
    | 33 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 34 | 0 |  public Date getTimestamp() {... | 
            
  
    | 35 | 0 | return timestamp; | 
            
  
    | 36 |  | } | 
            
  
    | 37 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 38 | 0 |  public void setTimestamp(Date timestamp) {... | 
            
  
    | 39 | 0 | this.timestamp = timestamp; | 
            
  
    | 40 |  | } | 
            
  
    | 41 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 42 | 0 |  public int getBuildNumber() {... | 
            
  
    | 43 | 0 | return buildNumber; | 
            
  
    | 44 |  | } | 
            
  
    | 45 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 46 | 0 |  public void setBuildNumber(int buildNumber) {... | 
            
  
    | 47 | 0 | this.buildNumber = buildNumber; | 
            
  
    | 48 |  | } | 
            
  
    | 49 |  | } |