com.helger.commons.error.text.IHasErrorText Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-commons Show documentation
Show all versions of ph-commons Show documentation
Java 1.6+ Library with tons of utility classes required in all projects
package com.helger.commons.error.text;
import com.helger.commons.annotation.MustImplementEqualsAndHashcode;
import com.helger.commons.text.display.IHasDisplayText;
/**
* Base interface for objects having an error text. Compared to
* {@link IHasDisplayText} it is required to implement equals and hashCode.
*
* @author Philip Helger
*/
@MustImplementEqualsAndHashcode
public interface IHasErrorText extends IHasDisplayText
{
/**
* @return true
if the error text is multilingual,
* false
otherwise.
*/
boolean isMultiLingual ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy