Skip to content

Commit

Permalink
Rename some GUIs.
Browse files Browse the repository at this point in the history
  • Loading branch information
BONNe committed Jan 17, 2019
1 parent 818892e commit dbe8cc5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* This class contains all necessary methods that creates GUI and allow to edit challenges
* properties.
*/
public class ChallengesEditGUI extends CommonGUI
public class ChallengeEditGUI extends CommonGUI
{
// ---------------------------------------------------------------------
// Section: Constructors
Expand All @@ -34,7 +34,7 @@ public class ChallengesEditGUI extends CommonGUI
* {@inheritDoc}
* @param challenge challenge that needs editing.
*/
public ChallengesEditGUI(ChallengesAddon addon,
public ChallengeEditGUI(ChallengesAddon addon,
World world,
User user,
Challenges challenge,
Expand All @@ -49,7 +49,7 @@ public ChallengesEditGUI(ChallengesAddon addon,
* {@inheritDoc}
* @param challenge challenge that needs editing.
*/
public ChallengesEditGUI(ChallengesAddon addon,
public ChallengeEditGUI(ChallengesAddon addon,
World world,
User user,
Challenges challenge,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* This class contains all necessary elements to create Levels Edit GUI.
*/
public class LevelsEditGUI extends CommonGUI
public class LevelEditGUI extends CommonGUI
{
// ---------------------------------------------------------------------
// Section: Constructors
Expand All @@ -32,7 +32,7 @@ public class LevelsEditGUI extends CommonGUI
* {@inheritDoc}
* @param challengeLevel ChallengeLevel that must be edited.
*/
public LevelsEditGUI(ChallengesAddon addon,
public LevelEditGUI(ChallengesAddon addon,
World world,
User user,
ChallengeLevels challengeLevel,
Expand All @@ -47,7 +47,7 @@ public LevelsEditGUI(ChallengesAddon addon,
* {@inheritDoc}
* @param challengeLevel ChallengeLevel that must be edited.
*/
public LevelsEditGUI(ChallengesAddon addon,
public LevelEditGUI(ChallengesAddon addon,
World world,
User user,
ChallengeLevels challengeLevel,
Expand Down Expand Up @@ -253,7 +253,7 @@ private PanelItem createChallengeIcon(Challenges challenge)
icon(challenge.getIcon()).
clickHandler((panel, user1, clickType, slot) -> {
// Open challenges edit screen.
new ChallengesEditGUI(this.addon,
new ChallengeEditGUI(this.addon,
this.world,
this.user,
challenge,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* This class contains methods that allows to select specific user.
*/
public class ChallengesUserListGUI extends CommonGUI
public class UserListGUI extends CommonGUI
{
// ---------------------------------------------------------------------
// Section: Variables
Expand Down Expand Up @@ -56,7 +56,7 @@ private enum ViewMode
/**
* {@inheritDoc}
*/
public ChallengesUserListGUI(ChallengesAddon addon,
public UserListGUI(ChallengesAddon addon,
World world,
User user, String topLabel, String permissionPrefix)
{
Expand All @@ -67,7 +67,7 @@ public ChallengesUserListGUI(ChallengesAddon addon,
/**
* {@inheritDoc}
*/
public ChallengesUserListGUI(ChallengesAddon addon,
public UserListGUI(ChallengesAddon addon,
World world,
User user,
String topLabel,
Expand Down

0 comments on commit dbe8cc5

Please sign in to comment.