You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2013/01/06 02:32:12 UTC

[jira] [Updated] (LANG-863) Method returns number of inheritance hops between parent and subclass

     [ https://issues.apache.org/jira/browse/LANG-863?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sebb updated LANG-863:
----------------------

    Fix Version/s:     (was: 4.0)
    
> Method returns number of inheritance hops between parent and subclass
> ---------------------------------------------------------------------
>
>                 Key: LANG-863
>                 URL: https://issues.apache.org/jira/browse/LANG-863
>             Project: Commons Lang
>          Issue Type: New Feature
>          Components: lang.reflect.*
>            Reporter: Daneel S. Yaitskov
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> For example.
> class A {
> }
> class B extends A {
> }
> class C extends B {
> }
> int d;
> d = InheritanceUtils.distance(A.class, A.class);
> Assert.assertEquals(0, d);
> d = InheritanceUtils.distance(B.class, A.class);
> Assert.assertEquals(1, d);
> d = InheritanceUtils.distance(C.class, A.class);
> Assert.assertEquals(2, d);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira