Class Cell

java.lang.Object
application.model.Cell

public class Cell
extends java.lang.Object
  • Constructor Summary

    Constructors 
    Constructor Description
    Cell​(int x, int y, int state, javafx.scene.shape.Rectangle rectangle)  
    Cell​(Coordinate coordinate, int state, javafx.scene.shape.Rectangle rectangle)  
  • Method Summary

    Modifier and Type Method Description
    Coordinate getCoordinate()  
    javafx.scene.shape.Rectangle getRectangle()  
    int getState()  
    void setCoordinate​(Coordinate coordinate)  
    void setState​(int state)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Cell

      public Cell​(Coordinate coordinate, int state, javafx.scene.shape.Rectangle rectangle)
    • Cell

      public Cell​(int x, int y, int state, javafx.scene.shape.Rectangle rectangle)
  • Method Details