Skip to content

Method: ConfiguredVariableAssignment(Target, String, Position)

1: package parser.nodes;
2:
3: import model.Position;
4:
5: public class ConfiguredVariableAssignment {
6:         private final Target target;
7:
8:         private final String value;
9:
10:         private final Position position;
11:
12:         public ConfiguredVariableAssignment(Target target, String value, Position position) {
13:                 this.target = target;
14:                 this.value = value;
15:                 this.position = position;
16:         }
17:
18:         public Target getTarget() {
19:                 return this.target;
20:         }
21:
22:         public String getValue() {
23:                 return this.value;
24:         }
25:
26:         public Position getPosition() {
27:                 return this.position;
28:         }
29: }