An open API service indexing awesome lists of open source software.

https://github.com/kptfh/autoextender

Allows to implements only selected methods of interface other will be stubbed automatically
https://github.com/kptfh/autoextender

cglib java reflection

Last synced: about 2 months ago
JSON representation

Allows to implements only selected methods of interface other will be stubbed automatically

Awesome Lists containing this project

README

          

# autoextender
Allows to implements only selected methods of interface other will be stubbed automatically

## Usage

Implement methods you need in abstract class and then let AutoExtender to stub remaining methods

```java
Interface stubbed = AutoExtender.extend(AbstractClass.class).to(Interface.class);
```