From fb492341a1d05590c5230e8e0bd5e48f530944fe Mon Sep 17 00:00:00 2001
From: Pacien TRAN-GIRARD
Date: Tue, 24 Nov 2015 11:15:53 +0100
Subject: Properly set class authors
---
src/ch/epfl/maze/util/Action.java | 2 ++
src/ch/epfl/maze/util/Direction.java | 1 +
src/ch/epfl/maze/util/LabyrinthGenerator.java | 2 ++
src/ch/epfl/maze/util/Statistics.java | 2 ++
src/ch/epfl/maze/util/Vector2D.java | 3 +++
5 files changed, 10 insertions(+)
(limited to 'src/ch/epfl/maze/util')
diff --git a/src/ch/epfl/maze/util/Action.java b/src/ch/epfl/maze/util/Action.java
index 069f135..6634293 100644
--- a/src/ch/epfl/maze/util/Action.java
+++ b/src/ch/epfl/maze/util/Action.java
@@ -4,6 +4,8 @@ package ch.epfl.maze.util;
* Immutable action that encapsulates a choice made by an animal and information
* about it, such as if it was successful or not, and if the animal will die
* while performing it.
+ *
+ * @author EPFL
*/
public final class Action {
diff --git a/src/ch/epfl/maze/util/Direction.java b/src/ch/epfl/maze/util/Direction.java
index d2ee4e7..ac172cb 100644
--- a/src/ch/epfl/maze/util/Direction.java
+++ b/src/ch/epfl/maze/util/Direction.java
@@ -5,6 +5,7 @@ package ch.epfl.maze.util;
* points ({@code DOWN, UP, RIGHT, LEFT}) from the frame of reference of the
* labyrinth, plus a default one : {@code NONE}.
*
+ * @author EPFL
* @author Pacien TRAN-GIRARD
*/
public enum Direction {
diff --git a/src/ch/epfl/maze/util/LabyrinthGenerator.java b/src/ch/epfl/maze/util/LabyrinthGenerator.java
index 9e47c25..f753173 100644
--- a/src/ch/epfl/maze/util/LabyrinthGenerator.java
+++ b/src/ch/epfl/maze/util/LabyrinthGenerator.java
@@ -9,6 +9,8 @@ import java.util.regex.Pattern;
/**
* Generates a set of pre-computed labyrinth structures
+ *
+ * @author EPFL
*/
public final class LabyrinthGenerator {
diff --git a/src/ch/epfl/maze/util/Statistics.java b/src/ch/epfl/maze/util/Statistics.java
index 3928859..b7e4d86 100644
--- a/src/ch/epfl/maze/util/Statistics.java
+++ b/src/ch/epfl/maze/util/Statistics.java
@@ -7,6 +7,8 @@ import java.util.*;
/**
* Utility class that allows to compute statistics on a list of results.
+ *
+ * @author EPFL
*/
public final class Statistics {
diff --git a/src/ch/epfl/maze/util/Vector2D.java b/src/ch/epfl/maze/util/Vector2D.java
index 52e1e55..2c0a911 100644
--- a/src/ch/epfl/maze/util/Vector2D.java
+++ b/src/ch/epfl/maze/util/Vector2D.java
@@ -2,6 +2,9 @@ package ch.epfl.maze.util;
/**
* Immutable 2-dimensional vector (x, y).
+ *
+ * @author EPFL
+ * @author Pacien TRAN-GIRARD
*/
public final class Vector2D {
--
cgit v1.2.3