supplier.java

来自「使用J2EE编写的网上商店系统」· Java 代码 · 共 112 行

JAVA
112
字号
/* * Generated by XDoclet - Do not edit! */package cmp;/** * Remote interface for Supplier. * @lomboz generated */public interface Supplier   extends javax.ejb.EJBObject{   /**    * Returns the supplierid    * @return the supplierid    */   public java.lang.String getSupplierid(  )      throws java.rmi.RemoteException;   /**    * Sets the supplierid    * @param java.lang.String the new supplierid value    */   public void setSupplierid( java.lang.String supplierid )      throws java.rmi.RemoteException;   /**    * Returns the userid    * @return the userid    */   public java.lang.String getUserid(  )      throws java.rmi.RemoteException;   /**    * Sets the userid    * @param java.lang.String the new userid value    */   public void setUserid( java.lang.String userid )      throws java.rmi.RemoteException;   /**    * Returns the firstname    * @return the firstname    */   public java.lang.String getFirstname(  )      throws java.rmi.RemoteException;   /**    * Sets the firstname    * @param java.lang.String the new firstname value    */   public void setFirstname( java.lang.String firstname )      throws java.rmi.RemoteException;   /**    * Returns the lastname    * @return the lastname    */   public java.lang.String getLastname(  )      throws java.rmi.RemoteException;   /**    * Sets the lastname    * @param java.lang.String the new lastname value    */   public void setLastname( java.lang.String lastname )      throws java.rmi.RemoteException;   /**    * Returns the address    * @return the address    */   public java.lang.String getAddress(  )      throws java.rmi.RemoteException;   /**    * Sets the address    * @param java.lang.String the new address value    */   public void setAddress( java.lang.String address )      throws java.rmi.RemoteException;   /**    * Returns the message    * @return the message    */   public java.lang.String getMessage(  )      throws java.rmi.RemoteException;   /**    * Sets the message    * @param java.lang.String the new message value    */   public void setMessage( java.lang.String message )      throws java.rmi.RemoteException;   /**    * Returns the credit_limit    * @return the credit_limit    */   public java.lang.Float getCredit_limit(  )      throws java.rmi.RemoteException;   /**    * Sets the credit_limit    * @param java.lang.Float the new credit_limit value    */   public void setCredit_limit( java.lang.Float credit_limit )      throws java.rmi.RemoteException;}

⌨️ 快捷键说明

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