user.java

来自「java ejb----html jsp」· Java 代码 · 共 48 行

JAVA
48
字号
/* * Generated by XDoclet - Do not edit! */package de.laliluna.tutorial.library.entity.interfaces;/** * Remote interface for User. * @xdoclet-generated at ${TODAY} * @copyright The XDoclet Team * @author XDoclet * @version ${version} */public interface User   extends javax.ejb.EJBObject{   public java.lang.Integer getId(  )      throws java.rmi.RemoteException;   public void setId( java.lang.Integer id )      throws java.rmi.RemoteException;   public java.lang.String getName(  )      throws java.rmi.RemoteException;   public void setName( java.lang.String name )      throws java.rmi.RemoteException;   public java.lang.String getLastName(  )      throws java.rmi.RemoteException;   public void setLastName( java.lang.String lastname )      throws java.rmi.RemoteException;   public java.lang.Integer getAge(  )      throws java.rmi.RemoteException;   public void setAge( java.lang.Integer age )      throws java.rmi.RemoteException;   public de.laliluna.tutorial.library.entity.interfaces.UserValue getUserValue(  )      throws java.rmi.RemoteException;   public void setUserValue( de.laliluna.tutorial.library.entity.interfaces.UserValue userValue )      throws java.rmi.RemoteException;}

⌨️ 快捷键说明

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