Skip to content

Generate metadata for non-public base classes #15

Description

@slavchev

In Java it is possible to call public method of non-public base class. Here is an example:

class Base {
   public void method1() {
   }
}
public class Derived extends Base {
   public void method2() {
   }
}
...
Derived d = new Derived();
d.method1();
d.method2();

Currently the metadata generator doesn't generate metadata for Base.method1.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions