私の変数は
private String category_code = null;
私のゲッターとセッターは次のように生成されます
public String getCategory_code() {
return category_code;
}
public void setCategory_code(String category_code) {
this.category_code = category_code;
}
生成することは可能ですか
public String getCategorycode() {
return category_code;
}
public void setCategorycode(String categorycode) {
this.category_code = category_code;
}
[プロパティ]->[コードスタイル]->[フィールド]をチェックしましたが、これはプレフィックスとサフィックスのみです。
または、変数の名前をm_categoryCodeに変更する必要がありますか?次のように私の出力を取得しますか?
public String getCategoryCode() {
return m_categoryCode;
}
public void setCategoryCode(String categoryCode) {
m_categoryCode = categoryCode;
}
どちらが良いですか?