m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java')
-rw-r--r--src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java b/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java
index 2fc0cce..130d287 100644
--- a/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java
+++ b/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java
@@ -29,27 +29,27 @@ import pl.edu.mimuw.cloudatlas.model.Value;
// immutable
public class QueryResult {
- private final Attribute name;
- private final Value value;
+ private final Attribute name;
+ private final Value value;
- public QueryResult(Attribute name, Value value) {
- this.name = name;
- this.value = value;
- }
+ public QueryResult(Attribute name, Value value) {
+ this.name = name;
+ this.value = value;
+ }
- public QueryResult(Value value) {
- this(null, value);
- }
+ public QueryResult(Value value) {
+ this(null, value);
+ }
- public Attribute getName() {
- return name;
- }
+ public Attribute getName() {
+ return name;
+ }
- public Value getValue() {
- return value;
- }
+ public Value getValue() {
+ return value;
+ }
- public String toString() {
- return name + ": " + value;
- }
+ public String toString() {
+ return name + ": " + value;
+ }
}