Skip to content
Snippets Groups Projects
Select Git revision
  • d082e98d8cc0cf23d5c80a36e50907a19843b76e
  • main default protected
  • variant
3 results

PersistentToggleGroup.java

Blame
  • Forked from LABOUREL Arnaud / Firefighter 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();
    }