Uploaded image for project: 'Commons Lang'
  1. Commons Lang
  2. LANG-775

TypeUtils.getTypeArguments() misses type arguments for partially-assigned classes

Attach filesAttach ScreenshotVotersWatch issueWatchersCreate sub-taskLinkCloneUpdate Comment AuthorReplace String in CommentUpdate Comment VisibilityDelete Comments
    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 3.1
    • 3.2
    • lang.reflect.*
    • None

    Description

      failing test code to add to TypeUtilsTest.testGetTypeArguments():

      typeVarAssigns = TypeUtils.getTypeArguments(Other.class, This.class);
      Assert.assertEquals(2, typeVarAssigns.size());
      Assert.assertEquals(String.class, typeVarAssigns.get(This.class.getTypeParameters()[0]));
      Assert.assertEquals(Other.class.getTypeParameters()[0], typeVarAssigns.get(This.class.getTypeParameters()[1]));
      

      These should pass based on:

      public interface This<K, V> {
      }
      
      public class Other<T> implements This<String, T> {
      }
      

      This case fails because the current code ignores the Other class due to its specifying its own type variables, which is obviously incorrect. This report is extrapolated from an offline report received by Hen.

      Attachments

        Issue Links

        Activity

          This comment will be Viewable by All Users Viewable by All Users
          Cancel

          People

            mbenson Matthew Jason Benson
            mbenson Matthew Jason Benson
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Slack

                Issue deployment