?? shipmentdao.java
字號:
package auction.dao;import auction.model.*;/** * Business DAO operations related to the <tt>Shipment</tt> entity. * <p> * This is an empty interface, currently there are no business-oriented * data access operations for this class. However, preparing the interface * means preparing ourself for future changes. That way, no refactoring is * necessary should we add methods one day. Note that with a sensible * factory, such as the <tt>HibernateDAOFactory</tt>, no concrete implementation * of this empty interface is needed, but a parameterized <tt>GenericDAO</tt> * for Hibernate can be constructed and used. * * @see auction.model.Comment * @author Christian Bauer */public interface ShipmentDAO extends GenericDAO<Shipment, Long> { // Empty}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -