View Javadoc
1   package org.argeo.slc;
2   
3   /**
4    * Adds a dimension to {@link NameVersion} by adding an arbitrary category (e.g.
5    * Maven groupId, yum repository ID, etc.)
6    */
7   public interface CategorizedNameVersion extends NameVersion {
8   	/** The category of the component. */
9   	public String getCategory();
10  }