org.jfree.report.modules.gui.config.model
public class: TextConfigDescriptionEntry [javadoc |
source]
java.lang.Object
org.jfree.report.modules.gui.config.model.ConfigDescriptionEntry
org.jfree.report.modules.gui.config.model.TextConfigDescriptionEntry
The text config description entry represents an configuration key, where users may
enter free-form text.
| Method from org.jfree.report.modules.gui.config.model.TextConfigDescriptionEntry Summary: |
|---|
|
equals, hashCode |
| Method from org.jfree.report.modules.gui.config.model.TextConfigDescriptionEntry Detail: |
public boolean equals(Object o) {
if (this == o)
{
return true;
}
if (o == null || getClass() != o.getClass())
{
return false;
}
if (!super.equals(o))
{
return false;
}
return true;
}
|
public int hashCode() {
return super.hashCode();
}
|