Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Find usages of a property not possible when normal getter/setters are used. #37

Open
EotT123 opened this issue Jun 2, 2024 · 0 comments
Labels

Comments

@EotT123
Copy link

EotT123 commented Jun 2, 2024

When using Manifold properties, there is no way to find usages of a field that still uses a normal getter.

public class Foo{
    @val String bar;
}

screenshot 47
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/...)

public class Foo {
    @Getter String bar;
}

screenshot 48

@rsmckinney rsmckinney added the bug label Jun 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants