001    package edu.rice.cs.cunit.util;
002    
003    /**
004     * Interface for a class that has a verbose toString method.
005     * @author Mathias Ricken
006     */
007    public interface IVerboseToString {
008        /**
009         * Return a more verbose string representation than toString().
010         * @return verbose string representation.
011         */
012        public String toStringVerbose();
013    }