BioFunctionalDesigner  1.0
 All Classes Functions
Public Member Functions | List of all members
com.sanmixy.dao.RecentlyUsedPartDao Interface Referenceabstract

RecentlyUsedPart DAO interface. More...

Inheritance diagram for com.sanmixy.dao.RecentlyUsedPartDao:
com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl

Public Member Functions

abstract void addRecord (RecentlyUsedPart record)
 Add method. More...
 
abstract void deleteRecord (Class clazz, Serializable serializable)
 Delete method. More...
 
abstract List getRecentlyUsedPart ()
 Get all recently used parts. More...
 
abstract List getRecentlyUsedPartByUserInfo (String userInfo)
 Get parts by user information. More...
 
abstract List getRecentlyUsedPartByType (String type)
 Get parts by part type. More...
 
abstract List getRecentlyUsedPartByTypeAndUserInfo (String type, String userInfo)
 Get parts by user information and part type. More...
 
abstract int findCountByPartName (String partName)
 Get the count of a part. More...
 
abstract int findCountByPartNameAndUserInfo (String partName, String userInfo)
 Get the count of part by part name and user information. More...
 
abstract void deleteRecordByID (int id)
 Delete method. More...
 
abstract int findIDByPartNameAndUserInfo (String partName, String userInfo)
 Find the record id by part name and user information. More...
 

Detailed Description

RecentlyUsedPart DAO interface.

Author
Xia Yu
Version
1.0

Member Function Documentation

abstract void com.sanmixy.dao.RecentlyUsedPartDao.addRecord ( RecentlyUsedPart  record)
pure virtual

Add method.

Parameters
record

Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.

abstract void com.sanmixy.dao.RecentlyUsedPartDao.deleteRecord ( Class  clazz,
Serializable  serializable 
)
pure virtual

Delete method.

Parameters
clazz
serializable

Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.

abstract void com.sanmixy.dao.RecentlyUsedPartDao.deleteRecordByID ( int  id)
pure virtual

Delete method.

Parameters
id

Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.

abstract int com.sanmixy.dao.RecentlyUsedPartDao.findCountByPartName ( String  partName)
pure virtual

Get the count of a part.

Parameters
partName
Returns
count

Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.

abstract int com.sanmixy.dao.RecentlyUsedPartDao.findCountByPartNameAndUserInfo ( String  partName,
String  userInfo 
)
pure virtual

Get the count of part by part name and user information.

Parameters
partName
userInfo
Returns
count

Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.

abstract int com.sanmixy.dao.RecentlyUsedPartDao.findIDByPartNameAndUserInfo ( String  partName,
String  userInfo 
)
pure virtual

Find the record id by part name and user information.

Parameters
partName
userInfo
Returns
id

Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.

abstract List com.sanmixy.dao.RecentlyUsedPartDao.getRecentlyUsedPart ( )
pure virtual

Get all recently used parts.

Returns
A list of parts

Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.

abstract List com.sanmixy.dao.RecentlyUsedPartDao.getRecentlyUsedPartByType ( String  type)
pure virtual

Get parts by part type.

Parameters
type
Returns
A list of parts

Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.

abstract List com.sanmixy.dao.RecentlyUsedPartDao.getRecentlyUsedPartByTypeAndUserInfo ( String  type,
String  userInfo 
)
pure virtual

Get parts by user information and part type.

Parameters
type
userInfo
Returns
A list of parts

Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.

abstract List com.sanmixy.dao.RecentlyUsedPartDao.getRecentlyUsedPartByUserInfo ( String  userInfo)
pure virtual

Get parts by user information.

Parameters
userInfo
Returns
A list of Parts

Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.


The documentation for this interface was generated from the following file: