1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 package org.ximtec.igesture.batch.core;
28
29
30
31
32
33
34
35
36
37
38 public class BatchParameter {
39
40
41 private String name;
42
43 private BatchForValue incrementalValue;
44
45 private BatchPowerSetValue permutationValue;
46
47 private BatchSequenceValue sequenceValue;
48
49 private BatchValue value;
50
51
52 public void setName(String name) {
53 this.name = name;
54 }
55
56
57 public String getName() {
58 return this.name;
59 }
60
61
62
63 public void setIncrementalValue(BatchForValue incrementalValue) {
64 this.incrementalValue = incrementalValue;
65 }
66
67
68 public BatchForValue getIncrementalValue() {
69 return incrementalValue;
70 }
71
72
73 public void setPermutationValue(BatchPowerSetValue permutationValue) {
74 this.permutationValue = permutationValue;
75 }
76
77
78 public BatchPowerSetValue getPermutationValue() {
79 return permutationValue;
80 }
81
82
83 public void setSequenceValue(BatchSequenceValue sequenceValue) {
84 this.sequenceValue = sequenceValue;
85 }
86
87
88 public BatchSequenceValue getSequenceValue() {
89 return sequenceValue;
90 }
91
92
93 public void setValue(BatchValue value) {
94 this.value = value;
95 }
96
97
98 public BatchValue getValue() {
99 return value;
100 }
101
102 }