View Javadoc

1   package net.sf.mavenhist.extractor;
2   
3   /**
4    * Objects implementing this interface have a name.
5    */
6   public interface INamedExtractor {
7     
8     /**
9      * Gets the name of the entity.
10     * @return the name.
11     */
12    String getName();
13  }