org.twdata.kokua.tw.data
Interface PlayerDao

All Superinterfaces:
Dao
All Known Implementing Classes:
PlayerMapDao

public interface PlayerDao
extends Dao


Method Summary
 Player create(java.lang.String name, int type)
           
 Player get(java.lang.String name, int type)
           
 Player get(java.lang.String name, int type, boolean create)
           
 java.util.Collection getAll()
           
 java.util.Collection getAllByType(int type)
           
 void remove(Player player)
           
 void update(Player player)
           
 

Method Detail

create

Player create(java.lang.String name,
              int type)

getAll

java.util.Collection getAll()

getAllByType

java.util.Collection getAllByType(int type)

update

void update(Player player)

get

Player get(java.lang.String name,
           int type)

get

Player get(java.lang.String name,
           int type,
           boolean create)

remove

void remove(Player player)