Skip to content

Commit

Permalink
documentation and access minor modifiers fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
akmsw committed Jul 8, 2023
1 parent 8d97f50 commit afe97b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public CustomSpinner(@NonNull SpinnerNumberModel spinnerNumberModel) {
// ---------------------------------------- Private methods -----------------------------------

/**
* Configures the graphical properties of the scroll pane in order to fit the program aesthetics.
* Configures the graphical properties of the spinner in order to fit the program aesthetics.
*/
private void setupGraphicalProperties() {
setUI(new BasicSpinnerUI() {
Expand Down Expand Up @@ -66,7 +66,7 @@ protected Component createPreviousButton() {
}

/**
* Configures the spinner 'previous' button to fit the program aesthetics.
* Configures the spinner 'next' button to fit the program aesthetics.
*
* @see CommonFunctions#buildArrowButton(int)
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public CustomTable(int rows, int columns) {
/**
* Configures the graphical properties for the table in order to fit the program aesthetics.
*/
public void setupGraphicalProperties() {
private void setupGraphicalProperties() {
setBorder(BorderFactory.createLineBorder(Constants.GREEN_DARK));
setDefaultRenderer(
Object.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
public class CustomTextArea extends JTextArea {

// ---------------------------------------- Constructor ---------------------------------------
// ---------------------------------------- Constructors --------------------------------------

/**
* Builds a basic text area using the established program aesthetics.
Expand Down

0 comments on commit afe97b1

Please sign in to comment.