/******************************************************************************* * Copyright (c) 2001, 2010 Mathew A. Nelson and Robocode contributors * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://robocode.sourceforge.net/license/epl-v10.html * * Contributors: * Pavel Savara * - Initial implementation * Flemming N. Larsen * - Javadocs *******************************************************************************/ package robocode.robotinterfaces; /** * A robot interface for creating the most primitive robot type, which is a * {@link robocode.JuniorRobot}. A junior robot is simpler than the * {@link robocode.Robot} class. * <p/> * A junior robot has a simplified model, in purpose of teaching programming * skills to inexperienced in programming students. * The simplified robot model will keep player from overwhelming of Robocode's * rules, programming syntax and programming concept. * <p/> * Instead of using getters and setters, public fields are provided for * receiving information like the last scanned robot, the coordinate of the * robot etc. * <p/> * All methods on a junior robot are blocking calls, i.e. they do not return * before their action has been completed and will at least take one turn to * execute. * * @author Pavel Savara (original) * @author Flemming N. Larsen (javadoc) * @see robocode.JuniorRobot * @see IBasicRobot * @see IAdvancedRobot * @see IInteractiveRobot * @see ITeamRobot * @since 1.6 */ public interface IJuniorRobot extends IBasicRobot {}