interfacer icon indicating copy to clipboard operation
interfacer copied to clipboard

Add interfaces to classes generated by other plugins

Results 5 interfacer issues
Sort by recently updated
recently updated
newest added

I'm working with several versioned SOAP WSDLs that each generate nearly-identical classes in different packages. For some cases, this plugin looks perfect! I love having some sort of automated duck-typing....

Whilst using the latest JDK for local development is generally fine, release builds should probably be done with the lowest JDK version you need to support. The current release of...

Hi, I've setup interfacer to process some generated java files that are output by the [gradle-avro-plugin](https://github.com/davidmc24/gradle-avro-plugin/) ``` plugins { id 'java-library' id 'maven-publish' id "com.github.davidmc24.gradle.plugin.avro-base" version "1.7.1" id "io.github.tunguski.interfacer" version...

Hi, I've been trying this out, and have run into a problem. I have a set of generated classes generated from avro IDL. When I try to create an interface...

It appears Interfacer cannot match an interface if it has `default` methods: ``` public interface CustomMessage { Context getContext(); default boolean isRepublished() { return getContext().getRepublishCount() > 0; } } ```...