Change Eclipse Getters Setters syntax
Is it poss开发者_JS百科ible to make eclipse generate GetVar1() instead of getVar1() ? (with capital G)
I very much doubt it, since that breaks both normal Java naming conventions for methods and the JavaBeans properties rules.
I would strongly, strongly recommend that you abide by Java naming conventions. Why would you want to make your code look inconsistent with all the other Java libraries including the standard library?
This is not possible because Eclipse follows Java naming conventions for generating getters and setters.
精彩评论