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

📄 recordinghome.java

📁 ejb20_src_relationships.rar
💻 JAVA
字号:
package examples.ejb20.relationships.bands;

import java.sql.Date;
import java.util.Collection;

import javax.ejb.EJBLocalHome;
import javax.ejb.CreateException;
import javax.ejb.FinderException;

public interface RecordingHome extends EJBLocalHome {

  public Recording create(String title, String band, String founder,
    Date recDate) 
    throws CreateException;

  public Recording findByPrimaryKey(RecordingPK primaryKey) 
    throws FinderException;
       
  public Collection findBigRecordings(long sales)
    throws FinderException;

  public Collection findByTitle(String title)
    throws FinderException;

  public Collection findNotByBand(Band badBand)
    throws FinderException;
}

⌨️ 快捷键说明

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