Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • das.s/tp3
  • f19002502/tp3
  • r17010960/tp3
  • l19004806/tp3
  • y19010055/tp3
  • o18034026/tp3
  • z18029613/tp3
  • p19021289/tp3
  • d19027596/tp3
  • f18010428/tp3
  • f19003868/tp3
  • c19022214/tp3
  • c19017929/tp3
  • m16014784/tp3
  • a19028956/tp3
  • c19026071/tp3
  • h18008908/tp3
17 results
Select Git revision
Loading items
Show changes
Commits on Source (1)
......@@ -6,11 +6,14 @@ public class Cell {
private boolean isAlive;
public Cell(){
this.isAlive = false;
}
/**
* Determines whether this {@link Cell} is alive or not.
*
*
* @return {@code true} if this {@link Cell} is alive and {@code false} otherwise
*/
......@@ -32,7 +35,7 @@ public class Cell {
/**
* Sets the state of this {@link Cell} to alive.
*
* @param cellState the new state of this {@link Cell}
* @param *cellState the new state of this {@link Cell}
*/
public void setAlive() {
......@@ -42,7 +45,7 @@ public class Cell {
/**
* Sets the state of this {@link Cell} to dead.
*
* @param cellState the new state of this {@link Cell}
* @param *cellState the new state of this {@link Cell}
*/
public void setDead() {
......