Package net.frenopatico.citadels.model

Examples of net.frenopatico.citadels.model.Player


    // Also have to override this version to control all delete() behavior
    @Override
    public final void delete( final Key<Player> entityKey ) {
        try {
            final Player player = this.get( entityKey );
            delete( player );
        } catch( EntityNotFoundException e ) {
            log.finest( "Entity not found." );
        }
    }
View Full Code Here

TOP

Related Classes of net.frenopatico.citadels.model.Player

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.