We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Assuming mm is a ClassModelManager in a decorator.
mm
ClassModelManager
Clazz foo = mm.haveClass("Foo"); mm.haveMethod(foo, "public void varargs(String... args)", "");
It generates a class with the varargs method.
class Foo { public void varargs(String... args) { } }
The ... are removed:
...
class Foo { public void varargs(String args) { } }
The text was updated successfully, but these errors were encountered:
Clashsoft
Successfully merging a pull request may close this issue.
Example
Assuming
mm
is aClassModelManager
in a decorator.Expected Behaviour
It generates a class with the varargs method.
Actual Behaviour
The
...
are removed:The text was updated successfully, but these errors were encountered: