View Javadoc

1   /*
2    * REPOWEB, repository manager.
3    *
4    * Terms of license - http://opensource.org/licenses/apachepl.php
5    */
6   package org.repoweb.model;
7   import java.util.List;
8   /***
9    * Represent a list of groups.
10   */
11  public interface GroupList {
12      public List getGroups();
13  
14  
15      public Group getGroup(int idx);
16  
17  
18      public int getGroupCount();
19  }