[
https://issues.apache.org/jira/browse/LANG-621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Philip Hodges updated LANG-621:
-------------------------------
Description:
{code:title=Reflect.java|borderStyle=solid}
import org.apache.commons.lang.builder.ReflectionToStringBuilder;
public class Reflect {
public static void main(String[] args) {
// "You can also use the builder to debug 3rd party objects:"
// System.out.println("An object: " +
ReflectionToStringBuilder.toString(anObject));
// expected:
reflect$compo...@a83b8a[instanceint=67890,fixture=reflect$sim...@1d1acd3[instanceint=12345]]
// actual:
reflect$compo...@a83b8a[instanceint=67890,fixture=reflect$sim...@1d1acd3]
System.out.println(ReflectionToStringBuilder.toString(new Compound()));
}
static class Compound {
private int instanceInt = 67890;
private Simple fixture = new Simple();
}
static class Simple {
private int instanceInt = 12345;
}
}
{code}
was:
{code:title=Reflect.java|borderStyle=solid}
import org.apache.commons.lang.builder.ReflectionToStringBuilder;
public class Reflect {
public static void main(String[] args) {
// "You can also use the builder to debug 3rd party objects:"
// System.out.println("An object: " +
ReflectionToStringBuilder.toString(anObject));
// expected:
reflect$compoundreflectionfieldsfixt...@a83b8a[instanceint=67890,fixture=reflect$simplereflectionfieldsfixt...@1d1acd3[instanceint=67890]]
// actual:
reflect$compoundreflectionfieldsfixt...@a83b8a[instanceint=67890,fixture=reflect$simplereflectionfieldsfixt...@1d1acd3]
System.out.println(ReflectionToStringBuilder.toString(new
CompoundReflectionFieldsFixture()));
}
static class CompoundReflectionFieldsFixture {
private int instanceInt = 67890;
private SimpleReflectionFieldsFixture fixture = new
SimpleReflectionFieldsFixture();
}
static class SimpleReflectionFieldsFixture {
private int instanceInt = 67890;
}
}
{code}
> ReflectionToStringBuilder.toString does not debug 3rd party object fields
> within 3rd party object
> -------------------------------------------------------------------------------------------------
>
> Key: LANG-621
> URL: https://issues.apache.org/jira/browse/LANG-621
> Project: Commons Lang
> Issue Type: Improvement
> Components: lang.builder.*
> Affects Versions: 2.5
> Reporter: Philip Hodges
> Priority: Minor
>
> {code:title=Reflect.java|borderStyle=solid}
> import org.apache.commons.lang.builder.ReflectionToStringBuilder;
> public class Reflect {
> public static void main(String[] args) {
> // "You can also use the builder to debug 3rd party objects:"
> // System.out.println("An object: " +
> ReflectionToStringBuilder.toString(anObject));
> // expected:
> reflect$compo...@a83b8a[instanceint=67890,fixture=reflect$sim...@1d1acd3[instanceint=12345]]
> // actual:
> reflect$compo...@a83b8a[instanceint=67890,fixture=reflect$sim...@1d1acd3]
> System.out.println(ReflectionToStringBuilder.toString(new
> Compound()));
> }
> static class Compound {
> private int instanceInt = 67890;
> private Simple fixture = new Simple();
> }
> static class Simple {
> private int instanceInt = 12345;
> }
> }
> {code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.