📄 coursemanagerimpl.java
字号:
package com.ibm.dw.open18;import org.appfuse.dao.GenericDao;import org.appfuse.service.impl.GenericManagerImpl;/** * A simple wrapper around the GenericManager interface provided by Appfuse. This wrapper * is needed to ease configuration and make the Spring-Seam integration possible. */public class CourseManagerImpl extends GenericManagerImpl<Course, Long> implements CourseManager { /** * Provide a default contructor to make Cglib happy. * Cglib is required since Seam cannot wrap JDK proxied IoC beans. */ public CourseManagerImpl() { super( null ); } public CourseManagerImpl( GenericDao<Course, Long> courseDao ) { super( courseDao ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -