View Javadoc
1 /* 2 * SupportedGame.java 3 * 4 * Created on February 14, 2003, 10:52 AM 5 */ 6 7 package com.mlw.fps.model.business.vo; 8 9 /*** 10 * 11 * @author Matthew Wilson 12 */ 13 public class SupportedGame 14 { 15 private String pk; 16 private String name; 17 18 19 /*** Creates a new instance of SupportedGame 20 */ 21 public SupportedGame(String pk, String name) 22 { 23 this.pk = pk; 24 this.name = name; 25 } 26 27 /*** Getter for property name. 28 * @return Value of property name. 29 */ 30 public String getName() 31 { 32 return this.name; 33 } 34 35 public String getPk() 36 { 37 return pk; 38 } 39 }

This page was automatically generated by Maven