o Added toString()

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@718701 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2008-11-18 20:10:33 +00:00
parent b75a13f0de
commit 8934c6ade4
1 changed files with 6 additions and 0 deletions

View File

@ -40,4 +40,10 @@ public class Bean
setterCalled = true;
}
public String toString()
{
return getClass().getName() + "[fieldParam=" + fieldParam + ", setterParam=" + setterParam
+ ", setterCalled=" + setterCalled + "]";
}
}