?? gangsterhome.java
字號:
package org.jboss.cmp2.crimeportal;
import java.util.Collection;
import java.util.Set;
import javax.ejb.CreateException;
import javax.ejb.EJBLocalHome;
import javax.ejb.FinderException;
public interface GangsterHome
extends EJBLocalHome
{
Gangster create(Integer id, String name, String nickName)
throws CreateException;
Gangster create(Integer id,
String name,
String nickName,
int badness,
Organization org)
throws CreateException;
Gangster findByPrimaryKey(Integer id) throws FinderException;
Collection findAll() throws FinderException;
Collection findAll_none() throws FinderException;
Collection findAll_onfind() throws FinderException;
Collection findAll_onload() throws FinderException;
Collection findBadDudes_ejbql(int badness) throws FinderException;
Collection findBadDudes_jbossql(int badness) throws FinderException;
Collection findBadDudes_declaredsql(int badness) throws FinderException;
Set selectBoss_ejbql(String name) throws FinderException;
Set selectBoss_declaredsql(String name) throws FinderException;
Set selectInStates(Set states) throws FinderException;
/** Finds just four gangsters. Used in read ahead tests. */
Collection findFour() throws FinderException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -