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
- Host: GitHub
- URL: https://github.com/kptfh/autoextender
- Owner: kptfh
- License: apache-2.0
- Created: 2018-04-03T06:53:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-28T17:09:36.000Z (about 7 years ago)
- Last Synced: 2025-03-11T03:51:59.773Z (7 months ago)
- Topics: cglib, java, reflection
- Language: Java
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```