View Javadoc
1 /* 2 * FilterManager.java 3 * 4 * Created on February 11, 2003, 3:20 AM 5 */ 6 7 package com.mlw.fps.model.manager; 8 9 import java.util.List; 10 11 import com.mlw.fps.model.business.vo.SystemFilters; 12 /*** 13 * 14 * @author Matthew Wilson 15 */ 16 public interface FilterManager 17 { 18 public List getPlayers(); 19 public List getWeapons(); 20 public List getMaps(); 21 public SystemFilters getSystemFilters(); 22 }

This page was automatically generated by Maven