Eclipse で Google の WindowBuilderPro を使用してデスクトップ アプリケーションを開発しています。
ただし、次のような多くのコードが生成されます。
protected JLabel lblNewLabel_2;
protected JLabel lblNewLabel_3;
protected JLabel lblNewLabel;
protected JLabel lblNewLabel_4;
protected JLabel lblNewLabel_5;
このようにすべてが統合されるように整理する方法はありますか?
protected JLabel lblNewLabel_2, lblNewLabel_3, lblNewLabel, lblNewLabel_4, lblNewLabel_5;
フィールド宣言だけで約100行かかります...