1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 }