View Javadoc
1 /* 2 * GameDAOImpl.java 3 * 4 * Created on February 11, 2003, 10:36 AM 5 */ 6 7 package com.mlw.fps.model.business.dao.hibernate; 8 9 import com.mlw.fps.model.business.dao.RoundDAO; 10 import com.mlw.fps.model.business.vo.Round; 11 /*** 12 * 13 * @author Matthew Wilson 14 */ 15 public class RoundDAOImpl implements RoundDAO 16 { 17 18 /*** Creates a new instance of RoundDAOImpl 19 */ 20 public RoundDAOImpl() 21 { 22 } 23 24 public void insert(Round round) 25 { 26 Config.save(round); 27 } 28 29 }

This page was automatically generated by Maven