It shouldn't be difficult to support just "Getter" & "Setter", although for now there are ways to generate these directly from completion (much like a snippet). The option to get those hints is known as signature help, and can be enabled in settings, java.signatureHelp.enabled=true . @...
{privateStringname;privateint[]results;privatebooleanfinished;privatechar[][]multidimensional;publicStringgetName() {returnname; }publicvoidsetName(Stringname) {this.name=name; }publicint[]getResults() {returnresults; }publicvoidsetResults(int[]results) {this.results=results; }// setters are not...