easy-random icon indicating copy to clipboard operation
easy-random copied to clipboard

Why not use custom Fields and Classes? This way, third-party projects such as idea plugins SDK PsiClass、PsiField can be better adapted

Open ifcute opened this issue 10 months ago • 0 comments

when i write a idea plugin,i find it's difficult to adapt,java.reflect.Field is final, i will change more and more code to realize

demo: ` interface CustomField {

} interface CustomClass { }

public interface RandomizerRegistry {

void init(EasyRandomParameters parameters);

Randomizer<?> getRandomizer(final CustomField field);

Randomizer<?> getRandomizer(final CustomClass type);

} `

ifcute avatar Apr 23 '24 02:04 ifcute