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.Map; 12 13 /*** 14 * 15 * @author Matthew Wilson 16 */ 17 public interface MapDAO 18 { 19 public abstract Collection getMaps(); 20 21 public abstract void insert(Map map); 22 23 public abstract Map getMapByPk(String mapPk); 24 public abstract Map getMapByName(String name); 25 }

This page was automatically generated by Maven