简体   繁体   中英

Reference an anonymous class?

I am developing a plugin for an RCP application. Within the plugin.xml , I need to register certain classes at a given extension point. One of these classes is an anonymous (?) class defined like this:

package de.me.mypackage;

import org.something.AnotherClass;

public class ClassOne {
  ...
  public static AnotherClass<ClassOne> getThat() {
    return new AnotherClass<ClassOne>() {
      ...
    };
  }

}

Is there any way to reference AnotherClass<ClassOne> within the plugin.xml?

I already tried something like de.me.mypackage.ClassOne$AnotherClass but that does not work. Do I have to declare that class within its own file to be able to reference it?

As far as I know, it would have a numeric index:

class Bla {
  public static void main(String[] args) {
    (new Runnable() {
      public void run() {
        System.out.println(getClass().getName()); // prints Bla$1
      }
    }).run();
  }
}

After compiling, you get:

$ ls *.class
Bla$1.class Bla.class

That said, you can't rely on the numbering in case the source file is modified.

Can you instead define a static inner class, like:

public class ClassOne {

  public static class MyClass extends AnotherClass<ClassOne> {
    public MyClass(/* arguments you would pass in getThat()? */) {
      ...
    }
    ...
  }

  public static AnotherClass<ClassOne> getThat() {
    return new MyClass(...);
  }
}

I need to say the obvious here - you should make it a named class if you want to refer to it. Whether you can access it otherwise is a technical curiosity (that I don't happen to know the answer to), not something you should actually do in production.

The dollar sign only comes into play in the class's binary name ; in Java source, just use de.me.mypackage.ClassOne.AnotherClass.class .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM