⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 servergetuserdatarequest.java

📁 一款用JAVA制作开发的小型聊天软件
💻 JAVA
字号:
package at.ac.uni_linz.tk.vchat;

/**
 * Represents a request for obtaining a User's data.
 *
 * @author      Arno Huetter
 * (C)opyright by the Institute for Computer Science, Telecooperation Department, University of Linz
 */

public class ServerGetUserDataRequest extends ServerAdministrationRequest {

  public User user;


/**
 * Constructs the ServerGetUserDataRequest.
 *
 * @param keyParam            the server's key which was applied when starting the
 *                            ChatServer
 * @param userNameParam       the name of the User whose data should be obtained
 */

  public ServerGetUserDataRequest(String keyParam, String userNameParam) {
    super(keyParam);
    user = new User(userNameParam, "");
  }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -