From c3b4eef14ceee77b66c7231879778df3d29a6e05 Mon Sep 17 00:00:00 2001 From: Ida Massow Date: Tue, 31 May 2011 15:29:37 +0200 Subject: Fixed all warnings (comments) but one, one TODO important git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@351 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/view/ISettingsPanel.java | 38 +++++++++++++++++++++++++++------- src/jrummikub/view/impl/WinPanel.java | 11 ++++++---- 2 files changed, 38 insertions(+), 11 deletions(-) (limited to 'src/jrummikub/view') diff --git a/src/jrummikub/view/ISettingsPanel.java b/src/jrummikub/view/ISettingsPanel.java index fbe1932..e76a3a2 100644 --- a/src/jrummikub/view/ISettingsPanel.java +++ b/src/jrummikub/view/ISettingsPanel.java @@ -36,8 +36,8 @@ public interface ISettingsPanel { }; /** - * The add player event is emitted when the user wants to add a player to the - * player list + * The add player event is emitted when the user wants to add a player to + * the player list * * @return the event */ @@ -83,12 +83,36 @@ public interface ISettingsPanel { */ public IEvent1 getChangeInitialMeldThresholdEvent(); + /** + * The change StoneSet number event is emitted when the user wants to use + * more or less than 2 StoneSets per color + * + * @return number of SoneSets + */ public IEvent1 getChangeStoneSetNumberEvent(); + /** + * The change number of Stones dealt event is emitted when the user wants to + * be dealt more or less than 14 Stones at the game start + * + * @return number of Stones dealt + */ public IEvent1 getChangeNumberOfStonesDealtEvent(); + /** + * The change highest value event is emitted when the user wants to set the + * highest Stone value + * + * @return highest Stone value + */ public IEvent1 getChangeHighestValueEvent(); + /** + * The change Stone colors event is emitted when the user chooses the stone + * colors to play with. Minimum 3, maximum 8 + * + * @return set of used StoneColors + */ public IEvent1> getChangeStoneColorsEvent(); /** @@ -102,7 +126,7 @@ public interface ISettingsPanel { * Sets an error to display * * @param error - * the kind of error + * the kind of error */ public void setError(SettingsError error); @@ -110,7 +134,7 @@ public interface ISettingsPanel { * Enables or disables the start game button * * @param enable - * specifies if the button is to be enabled or disabled + * specifies if the button is to be enabled or disabled */ public void enableStartGameButton(boolean enable); @@ -118,7 +142,7 @@ public interface ISettingsPanel { * Enables or disables the add player button * * @param enable - * specifies if the button is to be enabled or disabled + * specifies if the button is to be enabled or disabled */ public void enableAddPlayerButton(boolean enable); @@ -126,7 +150,7 @@ public interface ISettingsPanel { * Enables or disables the remove player buttons * * @param enable - * specifies if the buttons are to be enabled or disabled + * specifies if the buttons are to be enabled or disabled */ public void enableRemovePlayerButtons(boolean enable); @@ -135,7 +159,7 @@ public interface ISettingsPanel { * Sets the game settings to display * * @param gameSettings - * the settings + * the settings */ public void setGameSettings(GameSettings gameSettings); diff --git a/src/jrummikub/view/impl/WinPanel.java b/src/jrummikub/view/impl/WinPanel.java index ff52d0e..ff6f68a 100644 --- a/src/jrummikub/view/impl/WinPanel.java +++ b/src/jrummikub/view/impl/WinPanel.java @@ -20,6 +20,7 @@ import jrummikub.util.IEvent; class WinPanel extends JPanel { private final static int PANEL_INSET = 15; private final static int PANEL_SEPARATOR = 10; + @SuppressWarnings("unused") private final static float PANEL_FIRST_LINE_HEIGHT = 0.375f; private final static int PANEL_MAX_WIDTH = 180; private final static float MAX_BUTTON_FONT_SIZE = 12; @@ -100,7 +101,8 @@ class WinPanel extends JPanel { private void rescale() { Insets insets = getInsets(); int x = insets.left, y = insets.top, width = getWidth() - insets.left - - insets.right, height = getHeight() - insets.top - insets.bottom; + - insets.right, height = getHeight() - insets.top + - insets.bottom; if (width > PANEL_MAX_WIDTH) { x += (width - PANEL_MAX_WIDTH) / 4; @@ -116,13 +118,14 @@ class WinPanel extends JPanel { newRoundButton.setBounds(x, y, buttonWidth, buttonHeight); newRoundButton.setFont(newRoundButton.getFont().deriveFont(fontSize)); - newGameButton.setBounds(x + buttonWidth + PANEL_SEPARATOR, y, buttonWidth, - buttonHeight); + newGameButton.setBounds(x + buttonWidth + PANEL_SEPARATOR, y, + buttonWidth, buttonHeight); newGameButton.setFont(newGameButton.getFont().deriveFont(fontSize)); endProgramButton.setBounds(x + 2 * (buttonWidth + PANEL_SEPARATOR), y, buttonWidth, buttonHeight); - endProgramButton.setFont(endProgramButton.getFont().deriveFont(fontSize)); + endProgramButton.setFont(endProgramButton.getFont() + .deriveFont(fontSize)); } } -- cgit v1.2.3