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