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
Im writing snippets for JAVA.
e.g. get/set TriggerText: gs Lang: JAVA
public $[![{return_type}]!] get$[![{variable_name}]!]() { return $[![{variable_name}]!]; } // Set method for $[![{variable_name}]!] public void set$[![{variable_name}]!]($[![{return_type}]!] $[![{variable_name}]!]) { this.$[![{variable_name}]!] = $[![{variable_name}]!]; } $[0[]0] [>END<]
Output is
// Get method for bebek public int getbebek() { return bebek; } // Set method for bebek public void setbebek(int bebek) { this.bebek = bebek; }
I want to make first character of "bebek" uppercase after get/set like
public void setBebek(int bebek){ this.bebek = bebek; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Im writing snippets for JAVA.
e.g. get/set
TriggerText: gs
Lang: JAVA
Output is
I want to make first character of "bebek" uppercase after get/set like
The text was updated successfully, but these errors were encountered: