-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
Class Preferences violates coding convention style guide.
To Reproduce
Steps to reproduce the behavior:
- Go to
QualityToolsForBlueJ/src/main/java/edu/msudenver/bluejext/qualitytools/QualityToolsExtension.java
Lines 115 to 157 in 4314043
class Preferences implements PreferenceGenerator { /** The Jpanel comprising this Preference */ private JPanel myPanel; /** Invokes BlueJ proxy object for this Preference */ private BlueJ bluej; /** * Instantiate an object of the Preferences class and then register * it with the BlueJ proxy object. * * @param bluej BlueJ proxy object */ public Preferences(BlueJ bluej) { this.bluej = bluej; myPanel = new JPanel(); myPanel.add (new JLabel ("Quality Analysis Tools")); // Load the JPanel preference data loadValues(); } /** * Bluej will call this method to get the panel where preferences * for this extension are * * @return JPanel to contain preference data */ public JPanel getPanel () { return myPanel; } /** * Method to save values from the preference panel into its * internal state */ public void saveValues () { } /** * Method to load its current values into its preference panel */ public void loadValues () { //TODO implement JPanel options } } - See inconsistencies in the source code formatting of that class with Coding Convention Guide
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working