All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.examples.conway.Neighbor Maven / Gradle / Ivy

The newest version!
package org.drools.examples.conway;

public class Neighbor {
    private Cell cell;
    private Cell neighbor;
    
    public Neighbor(Cell cell, Cell neighbor) {
        this.cell = cell;
        this.neighbor = neighbor;
    }

    public Cell getCell() {
        return cell;
    }

    public Cell getNeighbor() {
        return neighbor;
    }       
    
    public String toString() {
        return "cell '"+ this.cell + "' neighbour '" + this.neighbor + "'"; 
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy