From d343ce4619f25610957573ab1e9d3618b3f606a3 Mon Sep 17 00:00:00 2001 From: Pacien TRAN-GIRARD Date: Mon, 22 Feb 2016 14:35:21 +0100 Subject: Add missing documentation on enum constants --- src/ch/epfl/xblast/Direction.java | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'src/ch/epfl') diff --git a/src/ch/epfl/xblast/Direction.java b/src/ch/epfl/xblast/Direction.java index ea0960d..cd4822e 100644 --- a/src/ch/epfl/xblast/Direction.java +++ b/src/ch/epfl/xblast/Direction.java @@ -7,7 +7,25 @@ package ch.epfl.xblast; */ public enum Direction { - N, E, S, W; + /** + * North + */ + N, + + /** + * East + */ + E, + + /** + * South + */ + S, + + /** + * West + */ + W; /** * Returns the opposite Direction. -- cgit v1.2.3