View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 2.3.0,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.maven.plugins.pmd.model;
7   
8   /**
9    * Class CpdErrorDetail.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class CpdErrorDetail
15      implements java.io.Serializable
16  {
17  
18        //--------------------------/
19       //- Class/Member Variables -/
20      //--------------------------/
21  
22      /**
23       * Field duplications.
24       */
25      private java.util.List<Duplication> duplications;
26  
27      /**
28       * Field modelEncoding.
29       */
30      private String modelEncoding = "UTF-8";
31  
32  
33        //-----------/
34       //- Methods -/
35      //-----------/
36  
37      /**
38       * Method addDuplication.
39       * 
40       * @param duplication a duplication object.
41       */
42      public void addDuplication( Duplication duplication )
43      {
44          getDuplications().add( duplication );
45      } //-- void addDuplication( Duplication )
46  
47      /**
48       * Method getDuplications.
49       * 
50       * @return List
51       */
52      public java.util.List<Duplication> getDuplications()
53      {
54          if ( this.duplications == null )
55          {
56              this.duplications = new java.util.ArrayList<Duplication>();
57          }
58  
59          return this.duplications;
60      } //-- java.util.List<Duplication> getDuplications()
61  
62      /**
63       * Get the modelEncoding field.
64       * 
65       * @return String
66       */
67      public String getModelEncoding()
68      {
69          return this.modelEncoding;
70      } //-- String getModelEncoding()
71  
72      /**
73       * Method removeDuplication.
74       * 
75       * @param duplication a duplication object.
76       */
77      public void removeDuplication( Duplication duplication )
78      {
79          getDuplications().remove( duplication );
80      } //-- void removeDuplication( Duplication )
81  
82      /**
83       * Set the duplications field.
84       * 
85       * @param duplications a duplications object.
86       */
87      public void setDuplications( java.util.List<Duplication> duplications )
88      {
89          this.duplications = duplications;
90      } //-- void setDuplications( java.util.List )
91  
92      /**
93       * Set the modelEncoding field.
94       * 
95       * @param modelEncoding a modelEncoding object.
96       */
97      public void setModelEncoding( String modelEncoding )
98      {
99          this.modelEncoding = modelEncoding;
100     } //-- void setModelEncoding( String )
101 
102 }