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

📄 employee.java

📁 根据Scott W. Ambler在1998年写的关于ORM Persistence Layer的详细设计论文的设计思路,Artem Rudoy 开发了一个开源的ORM实现 -- PL(Persist
💻 JAVA
字号:
package pl.test;

/**
 * Insert the type's description here.
 * Creation date: (27.07.00 17:19:29)
 * @author: 
 */
public class Employee extends Person {
	private long positionId = -1;
	private Position position = null;
	private java.util.Vector tasks = new java.util.Vector();
/**
 * Employee constructor comment.
 */
public Employee() {
	super();
}
/**
 * Insert the method's description here.
 * Creation date: (27.07.00 17:20:50)
 * @return pl.test.Position
 */
public Position getPosition() {
	return position;
}
/**
 * Insert the method's description here.
 * Creation date: (27.07.00 17:19:53)
 * @return long
 */
public long getPositionId() {
	return positionId;
}
/**
 * Insert the method's description here.
 * Creation date: (21.09.00 22:21:38)
 * @return java.util.Vector
 */
public java.util.Vector getTasks() {
	return tasks;
}
/**
 * Insert the method's description here.
 * Creation date: (27.07.00 17:20:50)
 * @param newPosition pl.test.Position
 */
public void setPosition(Position newPosition) {
	position = newPosition;
}
/**
 * Insert the method's description here.
 * Creation date: (27.07.00 17:19:53)
 * @param newPositionId long
 */
public void setPositionId(long newPositionId) {
	positionId = newPositionId;
}
/**
 * Insert the method's description here.
 * Creation date: (21.09.00 22:21:38)
 * @param newTasks java.util.Vector
 */
public void setTasks(java.util.Vector newTasks) {
	tasks = newTasks;
}
}

⌨️ 快捷键说明

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