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

📄 recording.java

📁 此程序都是企业级 的数据库开发程序 全面揭示了JAVA对数据库的操作
💻 JAVA
字号:
package ejb.recording;

import javax.ejb.EJBObject;
import java.rmi.RemoteException;

/**
 * This is the Remote Interface, where we expose business methods to the
 * client code which will use our beans. Our EJB container will create
 * classes that implement this interface and serve as a remote reference
 * 
 */
public interface Recording extends EJBObject {

  /**
   * Accessors
   */
  public Integer getRecordingId() throws RemoteException;

  public String getRecordingTitle() throws RemoteException;

  public String getRecordingArtist() throws RemoteException;

  public String getCatalogNumber() throws RemoteException;

  public Double getListPrice() throws RemoteException;

  /**
   * Mutators
   */
  public void setRecordingId(Integer inId) throws RemoteException;

  public void setRecordingTitle(String inTitle) throws RemoteException;

  public void setRecordingArtist(String inArtist) throws RemoteException;

  public void setCatalogNumber(String inNumber) throws RemoteException;

  public void setListPrice(Double inPrice) throws RemoteException;
}

⌨️ 快捷键说明

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