userint.java
来自「考勤管理系统源码」· Java 代码 · 共 31 行
JAVA
31 行
package com.wiley.compBooks.EJwithUML.TimeCardDomain;
/**
* The UserInt is the interface that ties the Bean with the Remote interface
* to provide compile time type checking.
*/
public interface UserInt
{
/** Answers the name of this User bean. */
public String getName();
/** Answers true if the entered password matches this User's password. */
public boolean isPasswordValid(String entered);
/** Answers true if the password should be changed. */
public boolean isPasswordChangeRequired();
/** Set the password of this User bean. */
public void setPassword(String password);
/** Set the password change flag of this User bean. */
public void setPasswordChangeFlag(boolean flag);
/** Answers the current timecard of this User bean. */
public TimecardLocal getCurrentTimecard();
/** Sets the current timecard. */
public void setCurrentTimecard(TimecardLocal timecard);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?