📄 user.java
字号:
/* * DVDItem.java * * Created on November 28, 2006, 4:48 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package com.exam.model;/** * * @author revans */public class User { private int UID; private String username; private String password; /** Creates a new instance of DVDItem */ public User(int UID, String username, String password) { this.UID = UID; this.username = username; this.password = password; } public int getUID() { return UID; } public String getUsername() { return username; } public String getPassword() { return password; } /** * @param UID the UID to set */ public void setUID(int UID) { this.UID = UID; } /** * @param username the username to set */ public void setUsername(String username) { this.username = username; } /** * @param password the password to set */ public void setPassword(String password) { this.password = password; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -