/**
 * Instances of this class represent a role of a person.
 */
interface Role {
    /** Sample method of this class.
     *  @return something
     */
    Something getSomething();
} // class Role
