Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4924358

need API to convert from binary name to canonical name

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • None
    • 1.4.0
    • core-libs
    • generic
    • solaris_9

      There should be an API to convert from a binary name (the name used in
      reflection and Class.forName()) to a canonical name (the name used in
      Java source code). In particular, for inner classes, the names aren't
      the same.

      Here's a sample implementation

          public static String canonicalNameOf(Class cls) {
      StringBuffer buf = new StringBuffer(cls.getName());
      Class declaringClass = cls;
      while ((declaringClass = declaringClass.getDeclaringClass()) != null) {
                  String declaringClassName = declaringClass.getName();
                  buf.setCharAt(declaringClassName.length(), '.');
      }
           return buf.toString();
          }

            Unassigned Unassigned
            bshannon Bill Shannon (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Imported:
              Indexed: