addresshome.java

来自「《J2EE企业级应用开发》一书的配套源代码」· Java 代码 · 共 13 行

JAVA
13
字号
package com.j2eeapp.ch21.cmp;
import javax.ejb.FinderException;
import java.util.Collection;

public interface AddressHome extends javax.ejb.EJBLocalHome
{
	public Address create(String street,String city,String state,String zip)throws javax.ejb.CreateException;
	public Address findByPrimaryKey(Integer primaryKey)throws javax.ejb.FinderException;
	public Collection queryAll()throws FinderException;
	public Customer queryCustomer(Address addr)throws FinderException;
	
}

⌨️ 快捷键说明

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