Coverage Report - org.apache.maven.changes.Action
 
Classes in this File Line Coverage Branch Coverage Complexity
Action
100% 
N/A 
1
 
 1  
 package org.apache.maven.changes;
 2  
 
 3  
 /*
 4  
  * Copyright 2001-2006 The Apache Software Foundation.
 5  
  *
 6  
  * Licensed under the Apache License, Version 2.0 (the "License");
 7  
  * you may not use this file except in compliance with the License.
 8  
  * You may obtain a copy of the License at
 9  
  *
 10  
  *      http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing, software
 13  
  * distributed under the License is distributed on an "AS IS" BASIS,
 14  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 15  
  * See the License for the specific language governing permissions and
 16  
  * limitations under the License.
 17  
  */
 18  
 
 19  
 /**
 20  
  * An action in a changes.xml file.
 21  
  *
 22  
  * @version $Id: org.apache.maven.changes.Action.html 816584 2012-05-08 12:33:35Z hboutemy $
 23  
  */
 24  
 public class Action
 25  
 {
 26  
     private String action;
 27  
 
 28  
     private String dev;
 29  
 
 30  
     private String dueTo;
 31  
 
 32  
     private String dueToEmail;
 33  528
 
 34  528
     private String issue;
 35  
 
 36  
     private String type;
 37  
 
 38  44
     public Action()
 39  554
     {
 40  510
     }
 41  
 
 42  
     public void setAction( String action )
 43  44
     {
 44  44
         this.action = action;
 45  44
     }
 46  
 
 47  
     public String getAction()
 48  44
     {
 49  88
         return action;
 50  
     }
 51  
 
 52  
     public void setDev( String dev )
 53  44
     {
 54  44
         this.dev = dev;
 55  44
     }
 56  
 
 57  
     public String getDev()
 58  44
     {
 59  88
         return dev;
 60  
     }
 61  
 
 62  
     public void setDueTo( String dueTo )
 63  44
     {
 64  44
         this.dueTo = dueTo;
 65  44
     }
 66  
 
 67  
     public String getDueTo()
 68  44
     {
 69  88
         return dueTo;
 70  
     }
 71  
 
 72  
     public void setDueToEmail( String dueToEmail )
 73  44
     {
 74  44
         this.dueToEmail = dueToEmail;
 75  44
     }
 76  
 
 77  
     public String getDueToEmail()
 78  44
     {
 79  88
         return dueToEmail;
 80  
     }
 81  
 
 82  
     public void setIssue( String issue )
 83  44
     {
 84  44
         this.issue = issue;
 85  44
     }
 86  
 
 87  
     public String getIssue()
 88  44
     {
 89  88
         return issue;
 90  
     }
 91  
 
 92  
     public void setType( String type )
 93  44
     {
 94  44
         this.type = type;
 95  44
     }
 96  
 
 97  
     public String getType()
 98  
     {
 99  44
         return type;
 100  
     }
 101  
 }