View Javadoc

1   /*
2    * DaCapo Benchmark Maven Plugin
3    * Copyright (C) 2010 Technische Universität Darmstadt
4    * info@scalabench.org
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  package org.scalabench.plugins.dacapo.config;
19  
20  public class Description {
21      
22      private String shortDescription;
23      
24      private String longDescription;
25      
26      private String copyright;
27      
28      private String author;
29      
30      private String license;
31      
32      private String url;
33      
34      private String version;
35      
36      private String threads;
37      
38      private String repeats;
39      
40      public String getShort() {
41          return shortDescription;
42      }
43      
44      public void setShort(String shortDescription) {
45          this.shortDescription = shortDescription;
46      }
47      
48      public String getLong() {
49          return longDescription;
50      }
51      
52      public void setLong(String longDescription) {
53          this.longDescription = longDescription;
54      }
55      
56      public String getCopyright() {
57          return copyright;
58      }
59      
60      public void setCopyright(String copyright) {
61          this.copyright = copyright;
62      }
63      
64      public String getAuthor() {
65          return author;
66      }
67      
68      public void setAuthor(String author) {
69          this.author = author;
70      }
71      
72      public String getLicense() {
73          return license;
74      }
75      
76      public void setLicense(String license) {
77          this.license = license;
78      }
79      
80      public String getUrl() {
81          return url;
82      }
83      
84      public void setUrl(String url) {
85          this.url = url;
86      }
87      
88      public String getVersion() {
89          return version;
90      }
91      
92      public void setVersion(String version) {
93          this.version = version;
94      }
95      
96      public String getThreads() {
97          return threads;
98      }
99      
100     public void setThreads(String threads) {
101         this.threads = threads;
102     }
103     
104     public String getRepeats() {
105         return repeats;
106     }
107     
108     public void setRepeats(String repeats) {
109         this.repeats = repeats;
110     }
111 }