Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/repoweb/model/Group.java


1   /*
2    * REPOWEB, repository manager.
3    *
4    * Terms of license - http://opensource.org/licenses/apachepl.php
5    */
6   package org.repoweb.model;
7   
8   /**
9    * Represent an artifact group.
10   */
11  public interface Group {
12      String getGroupId();
13  
14  
15      ArtifactList getArtifacts();
16  }