List of usage examples for org.apache.commons.lang.builder StandardToStringStyle setUseShortClassName
public void setUseShortClassName(boolean useShortClassName)
Sets whether to output short or long class names.
From source file:org.novelang.testing.DirectoryFixture.java
public String toString() { final StandardToStringStyle style = new StandardToStringStyle(); style.setUseShortClassName(true); return new ToStringBuilder(this, style).append(testIdentifier).toString(); }