From 946cab444bc301d8a7c756a1bab039558288de89 Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Wed, 11 Oct 2017 13:41:07 -0300 Subject: Cleanup work --- .../bjc/utils/data/TopDownTransformResult.java | 26 ++++++---------------- 1 file changed, 7 insertions(+), 19 deletions(-) (limited to 'base/src/main/java/bjc/utils/data/TopDownTransformResult.java') diff --git a/base/src/main/java/bjc/utils/data/TopDownTransformResult.java b/base/src/main/java/bjc/utils/data/TopDownTransformResult.java index ed41eae..3907df2 100644 --- a/base/src/main/java/bjc/utils/data/TopDownTransformResult.java +++ b/base/src/main/java/bjc/utils/data/TopDownTransformResult.java @@ -1,34 +1,22 @@ package bjc.utils.data; /** - * Represents the results for doing a top-down transform of a tree + * Represents the results for doing a top-down transform of a tree. * * @author ben * */ public enum TopDownTransformResult { - /** - * Do not do anything to this node, and ignore its children - */ + /** Do not do anything to this node, and ignore its children. */ SKIP, - /** - * Transform this node, and don't touch its children - */ + /** Transform this node, and don't touch its children. */ TRANSFORM, - /** - * Transform this node, then do a top-down transform on the result - */ + /** Transform this node, then recursively transform the result. */ RTRANSFORM, - /** - * Ignore this node, and traverse its children - */ + /** Ignore this node, and traverse its children. */ PASSTHROUGH, - /** - * Traverse the nodes of this children, then transform it - */ + /** Traverse the nodes of this children, then transform it. */ PUSHDOWN, - /** - * Transform this node, then traverse its children - */ + /** Transform this node, then traverse its children. */ PULLUP; } -- cgit v1.2.3