sf-vishwastyagi

Results 6 comments of sf-vishwastyagi

hi @raphw Thanks for response. My application is developed in java 8, and currently we are making changes so that code can run in java 17. We are planning to...

thank you very much for reply. You can close this issue

Hi @raphw I need a help. I want to build a dynamic class using which can do that following :- 1. I have a third party jar which has package...

Something similar:- ``` public class DynamicCIPropertyInfo { private final CIPropertyInfo propertyInfo; public DynamicCIPropertyInfo(CIPropertyInfo propertyInfo) { this.propertyInfo = propertyInfo; } public String getName() { return propertyInfo.getName(); } } ``` Since I...

Hi @raphw Thanks for answering. But I used separate class as well:- ``` DynamicType.Unloaded dynamicClass = new ByteBuddy() .subclass(Object.class) // The dynamic class will extend Object .name("x.y.z.DynamicCIPropertyInfo") // Set the...

Please do share if you have some code snippet for the below points:- 1. I have a third party jar which has package x.y.z. 2. create a dynamic class in...