Codemodel: how to implement method reference

253 Views Asked by At

I have a interface having getter methods like below

public interface IAddress {
  AddressId getId();
  String getCity();
  String getCountry();
}

I want to create another class where I want to reference the getter methods of IAddress like IAddress::getId .

How can I achieve this in JCodeModel?

0

There are 0 best solutions below