You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using Manifold properties, there is no way to find usages of a field that still uses a normal getter.
publicclassFoo{
@valStringbar;
}
Using Find Usages does not include something like this: String bar = new Foo().getBar();
Lombok adds the generated getters/setters to the Structure view. This might be a more intuitive way? (It also makes it more clear whether the generated getter/setter is private/protected/...)
publicclassFoo {
@GetterStringbar;
}
The text was updated successfully, but these errors were encountered:
When using Manifold properties, there is no way to find usages of a field that still uses a normal getter.
Using
Find Usages
does not include something like this:String bar = new Foo().getBar();
Lombok adds the generated getters/setters to the Structure view. This might be a more intuitive way? (It also makes it more clear whether the generated getter/setter is private/protected/...)
The text was updated successfully, but these errors were encountered: