View Javadoc
1 /* 2 * PlayerDAO.java 3 * 4 * Created on February 11, 2003, 10:33 AM 5 */ 6 7 package com.mlw.fps.model.business.dao; 8 9 import java.util.Collection; 10 11 import com.mlw.fps.model.business.vo.Player; 12 13 /*** 14 * 15 * @author Matthew Wilson 16 */ 17 public interface PlayerDAO 18 { 19 public Collection getPlayers(); 20 21 public void insert(Player player); 22 23 public Player getPlayerByName(String name); 24 public Player getPlayerByPk(String playerPk); 25 }

This page was automatically generated by Maven