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

📄 studentlocalhome.java

📁 < J2EE应用开发详解>>一书全部的源代码. 本书基于J2EE 1.4平台
💻 JAVA
字号:
package com.j2ee14.ch17;

import javax.ejb.*;

public interface StudentLocalHome extends EJBLocalHome
{
    
    /**
     * @J2EE_METHOD  --  findByPrimaryKey
     */
    public StudentLocal findByPrimaryKey    (String primaryKey) 
                throws FinderException;
    
    /**
     * @J2EE_METHOD  --  create
     */
    public StudentLocal create    (String id) 
                throws CreateException;
    
    /**
     * @J2EE_METHOD  --  findByName
     */
    public java.util.Collection findByName    (String studentName) 
                throws FinderException;
    
    /**
     * @J2EE_METHOD  --  findByCourseName
     */
    public java.util.Collection findByCourseName    (String name) 
                throws FinderException;
    
    /**
     * @J2EE_METHOD  --  findByCity
     */
    public java.util.Collection findByCity    (String city) 
                throws FinderException;
    
    /**
     * @J2EE_METHOD  --  findClassesStudents
     */
    public java.util.Collection findClassesStudents    (String id) 
                throws FinderException;
    /**
     *Home方法
     */
    public java.util.Collection queryCities()throws FinderException;
    public java.util.Collection getStudentByAge(Integer age)throws FinderException;
    public java.util.Collection getElderStudent()throws FinderException;
    public java.util.Collection getYoungestStudent()throws FinderException;
    public Integer getAmountOfStudentsFromSomeCity(String city)throws FinderException;
    public Double getStudentAvgAge()throws FinderException;
    public Integer getStudentAges()throws FinderException;
    
}

⌨️ 快捷键说明

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