summaryrefslogtreecommitdiff
path: root/dice-lang/src/bjc/dicelang/ast
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2016-11-16 11:32:45 -0500
committerbculkin2442 <bjculkin@mix.wvu.edu>2016-11-16 11:32:45 -0500
commite7a7cf10e2e9e05a6b12fd7c4d8d0ff2146901d9 (patch)
tree394027a77946ecd1f4242767592547b599639811 /dice-lang/src/bjc/dicelang/ast
parent9a842bea599230fcd25c36024984e09c50222082 (diff)
Documentation update
Diffstat (limited to 'dice-lang/src/bjc/dicelang/ast')
-rw-r--r--dice-lang/src/bjc/dicelang/ast/DummyResult.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/dice-lang/src/bjc/dicelang/ast/DummyResult.java b/dice-lang/src/bjc/dicelang/ast/DummyResult.java
index a84bb7c..dec615d 100644
--- a/dice-lang/src/bjc/dicelang/ast/DummyResult.java
+++ b/dice-lang/src/bjc/dicelang/ast/DummyResult.java
@@ -1,11 +1,23 @@
package bjc.dicelang.ast;
+/**
+ * A dummy result
+ *
+ * @author ben
+ *
+ */
public class DummyResult implements IResult {
/*
* The reason why this result is a dummy
*/
private String dummyData;
+ /**
+ * Create a new dummy result with a reason
+ *
+ * @param data
+ * The reason why the result is a dummy
+ */
public DummyResult(String data) {
dummyData = data;
}