?? userpositionevent.java
字號:
package at.ac.uni_linz.tk.vchat;
import java.io.*;
import java.awt.*;
/**
* Represents a changement of a User's position.
*
* @author Arno Huetter
* (C)opyright by the Institute for Computer Science, Telecooperation Department, University of Linz
*/
public class UserPositionEvent extends UserEvent implements Serializable {
public Point userPosition;
/**
* Constructs the UserPositionEvent.
*
* @param idParam the id of the User producing the Event
* @param positionParam the new position
*/
public UserPositionEvent (int idParam, Point positionParam) {
super(idParam);
userPosition = new Point(positionParam);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -