conceptlocalhome.java
来自「《Java网络程序设计.rar》包括三个网络程序的源代码。」· Java 代码 · 共 26 行
JAVA
26 行
package org.impact.stars.conceptmd.concept.ejb;
import javax.ejb.*;
//
import java.util.Collection;
import java.sql.Date;
/**
*
* @author cai
* Created Aug 28, 2001 10:49:20 PM
* Code generated by the Forte for Java EJB Module
*/
public interface ConceptLocalHome extends EJBLocalHome {
/**
*/
ConceptLocal create(String cstrID, String conceptID, String name, String parentID, String type, String pstakeholder, String shared, Date ptime, String definition, String description) throws CreateException;
public ConceptLocal findByPrimaryKey(String conceptID) throws FinderException;
public Collection findByName(String name) throws FinderException;
public Collection findByType(String type) throws FinderException;
public Collection findChildren (String pid) throws FinderException;
//public Collection findByDescription(String description) throws FinderException;
public Collection findByShared(String shared) throws FinderException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?