Package lounge.misc

Examples of lounge.misc.EditProfileAction


   
    JLabel portLabel = new JLabel("Username: "+ gatheringLoungeModel.getCurrentUser().getName() + ", Uw poort: "+ Integer.toString(gatheringLoungeModel.getHostPort()));
   
    ChatTabbedPanel chatTabbedPanel = gatheringLoungeModel.getChatPanel();
   
    editButton.setAction(new EditProfileAction(gatheringLoungeModel.getCurrentUser(), gatheringLoungeModel.getUserModel()));
   
    JList friendList = gatheringLoungeModel.getFriendJList();
   
    JScrollPane friendScrollPane = new JScrollPane(friendList);
    friendScrollPane.setPreferredSize(new Dimension(250, 40));
View Full Code Here


    readyCheckBox.setEnabled(!gameLoungeModel.isHosting());
   
    startButton = new StartButton(gameLoungeModel, "Start game");
       
    JButton editButton = new JButton("Edit profile");
    editButton.setAction(new EditProfileAction(gameLoungeModel.getCurrentUser(), gameLoungeModel.getUserModel()));
   
    JButton leaveButton = new LeaveButton(gameLoungeModel, "Leave GameLounge");
    JLabel playersReady = new ReadyLabel(gameLoungeModel);
   
   
View Full Code Here

TOP

Related Classes of lounge.misc.EditProfileAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.