misc language lvl updated
This commit is contained in:
@@ -2,8 +2,6 @@ package ch.zhaw.catan;
|
||||
|
||||
import java.awt.Point;
|
||||
|
||||
/// TODO: 09/12/2021 Java Doc
|
||||
|
||||
/**
|
||||
* sub Class of Structure
|
||||
* Can be saved in Siedler Board on Edges.
|
||||
|
||||
@@ -5,6 +5,8 @@ import java.awt.Point;
|
||||
/**
|
||||
* Sub Class of Structure and Super Class of City
|
||||
* Can be saved in Siedler Board on a corner
|
||||
*
|
||||
* @author Andrin Fassbind, Roman Schenk
|
||||
*/
|
||||
public class Settlement extends Structure {
|
||||
|
||||
@@ -17,6 +19,8 @@ public class Settlement extends Structure {
|
||||
}
|
||||
|
||||
/**
|
||||
* This Methode Returns the Position of the Settlement
|
||||
*
|
||||
* @return the datafield position
|
||||
*/
|
||||
public Point getPosition() {
|
||||
|
||||
@@ -11,7 +11,6 @@ import java.util.HashSet;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
//TODO Enhance JavaDoc
|
||||
|
||||
/**
|
||||
* Subclass of HexBoard
|
||||
@@ -22,7 +21,6 @@ public class SiedlerBoard extends HexBoard<Config.Land, Settlement, Road, String
|
||||
/**
|
||||
* HashMap to save all Fields which are set yet.
|
||||
* Key: Point with coordinates of the field
|
||||
* //TODO Enhance JavaDoc
|
||||
* Value: Field Object
|
||||
*/
|
||||
private final HashMap<Point, Field> fields = new HashMap<>();
|
||||
|
||||
Reference in New Issue
Block a user