Bug 533642 - [quick assist] Adjust names when moving fields to constants and back
Summary: [quick assist] Adjust names when moving fields to constants and back
Status: NEW
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Text (show other bugs)
Version: 4.7.3   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-Text-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-04-16 17:09 EDT by Frank Benoit CLA
Modified: 2018-04-17 11:12 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Frank Benoit CLA 2018-04-16 17:09:19 EDT
When changing fields to constants, a repeated task for me is renaming fields to meet the naming convention.

private static final int myValue = 234;
--> rename to upper-snake-case
private static final int MY_VALUE = 234;
--> rename to lower-camel-case
private static final int myValue = 234;