userlocal.java

来自「《J2EE编程技术》作者郝玉龙—源代码 《J2EE编程技术》作者郝玉龙—源代码」· Java 代码 · 共 62 行

JAVA
62
字号
/* * Generated by XDoclet - Do not edit! */package com.study.exercise;/** * Local interface for User. * @lomboz generated */public interface UserLocal   extends javax.ejb.EJBLocalObject{   /**    * Returns the userID    * @return the userID    */   public java.lang.String getUserID(  ) ;   /**    * Sets the userID    * @param java.lang.String the new userID value    */   public void setUserID( java.lang.String userID ) ;   /**    * Returns the password    * @return the password    */   public java.lang.String getPassword(  ) ;   /**    * Sets the password    * @param java.lang.String the new password value    */   public void setPassword( java.lang.String password ) ;   /**    * Returns the level    * @return the level    */   public java.lang.Integer getLevel(  ) ;   /**    * Sets the level    * @param java.lang.Integer the new level value    */   public void setLevel( java.lang.Integer level ) ;   /**    * Returns the email_address    * @return the email_address    */   public java.lang.String getEmail_address(  ) ;   /**    * Sets the email_address    * @param java.lang.String the new email_address value    */   public void setEmail_address( java.lang.String email_address ) ;}

⌨️ 快捷键说明

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