View Javadoc
1   package org.codehaus.mojo.jdepend.objects;
2   
3   /*
4    * #%L
5    * JDepend Maven Plugin
6    * %%
7    * Copyright (C) 2006 - 2014 Codehaus
8    * %%
9    * Licensed under the Apache License, Version 2.0 (the "License");
10   * you may not use this file except in compliance with the License.
11   * You may obtain a copy of the License at
12   * 
13   *    http://www.apache.org/licenses/LICENSE-2.0
14   * 
15   * Unless required by applicable law or agreed to in writing, software
16   * distributed under the License is distributed on an "AS IS" BASIS,
17   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   * See the License for the specific language governing permissions and
19   * limitations under the License.
20   * #L%
21   */
22  
23  /**
24   * @author Who ever this implemented first.
25   */
26  public class Stats
27  {
28      private String totalClasses;
29  
30      private String concreteClasses;
31  
32      private String abstractClasses;
33  
34      private String ca;
35  
36      private String ce;
37  
38      private String a;
39  
40      private String i;
41  
42      private String d;
43  
44      private String v;
45  
46      /**
47       * @return total classes.
48       */
49      public String getTotalClasses()
50      {
51          return totalClasses;
52      }
53  
54      /**
55       * @param totalClasses
56       */
57      public void setTotalClasses( String totalClasses )
58      {
59          this.totalClasses = totalClasses;
60      }
61  
62      /**
63       * @return concrete classes.
64       */
65      public String getConcreteClasses()
66      {
67          return concreteClasses;
68      }
69  
70      /**
71       * @param concreteClasses
72       */
73      public void setConcreteClasses( String concreteClasses )
74      {
75          this.concreteClasses = concreteClasses;
76      }
77  
78      /**
79       * @return get abstract classes.
80       */
81      public String getAbstractClasses()
82      {
83          return abstractClasses;
84      }
85  
86      /**
87       * @param abstractClasses
88       */
89      public void setAbstractClasses( String abstractClasses )
90      {
91          this.abstractClasses = abstractClasses;
92      }
93  
94      /**
95       * @return ca.
96       */
97      public String getCa()
98      {
99          return ca;
100     }
101 
102     /**
103      * @param ca
104      */
105     public void setCa( String ca )
106     {
107         this.ca = ca;
108     }
109 
110     /**
111      * @return Ce
112      */
113     public String getCe()
114     {
115         return ce;
116     }
117 
118     public void setCe( String ce )
119     {
120         this.ce = ce;
121     }
122 
123     /**
124      * @return A
125      */
126     public String getA()
127     {
128         return a;
129     }
130 
131     /**
132      * @param a
133      */
134     public void setA( String a )
135     {
136         this.a = a;
137     }
138 
139     /**
140      * @return I
141      */
142     public String getI()
143     {
144         return i;
145     }
146 
147     /**
148      * @param i
149      */
150     public void setI( String i )
151     {
152         this.i = i;
153     }
154 
155     /**
156      * @return D
157      */
158     public String getD()
159     {
160         return d;
161     }
162 
163     /**
164      * @param d
165      */
166     public void setD( String d )
167     {
168         this.d = d;
169     }
170 
171     /**
172      * @return V
173      */
174     public String getV()
175     {
176         return v;
177     }
178 
179     /**
180      * @param v
181      */
182     public void setV( String v )
183     {
184         this.v = v;
185     }
186 }