Skip to content
Snippets Groups Projects
Select Git revision
  • b37c71b1351d502639ba20f973f3e98eb169665b
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

CoordinateIteratorTest.java

Blame
  • Forked from NAVES Guyslain / Game of life Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ElementFactory.java 179 B
    package model;
    
    import java.util.List;
    
    public interface ElementFactory<T extends ModelElement> {
        List<T> createElements(int rowCount, int columnCount);
        int getCount();
    }