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
If you have a Java type that has both a getter and a setter, we combine them into a property:
bool getEnabled (); void setEnabled (bool value);
becomes:
public virtual bool Enabled { get; set; }
If a Java subclass overrides the setter, we will generate a method instead of a property because generator does not support setter-only properties:
generator
public override void SetEnabled (bool value)
This causes a C# error because the method does not actually override anything in the base class.
Some possible fixes:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you have a Java type that has both a getter and a setter, we combine them into a property:
becomes:
If a Java subclass overrides the setter, we will generate a method instead of a property because
generator
does not support setter-only properties:This causes a C# error because the method does not actually override anything in the base class.
Some possible fixes:
The text was updated successfully, but these errors were encountered: