Skip to content
Snippets Groups Projects
Select Git revision
  • f6148c1d09f7ab5c4a248e8555a1c51a049a53cd
  • master default protected
2 results

AbstractShape.java

Blame
  • Forked from COUETOUX Basile / graphic-2020
    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();
    }