Checkstyle

This commit is contained in:
Arne Keller 2020-02-25 08:52:20 +01:00
parent e487a23251
commit 0970bfb978
4 changed files with 20 additions and 2 deletions

View File

@ -2,6 +2,12 @@ package edu.kit.informatik.model;
import edu.kit.informatik.ui.InvalidInputException;
/**
* A freight coach.
*
* @author Arne Keller
* @version 1.0
*/
public class FreightCoach extends Coach {
/**
* ASCII art representation of a freight coach.

View File

@ -2,6 +2,12 @@ package edu.kit.informatik.model;
import edu.kit.informatik.ui.InvalidInputException;
/**
* A passenger coach.
*
* @author Arne Keller
* @version 1.0
*/
public class PassengerCoach extends Coach {
/**
* ASCII art representation of a passenger coach.

View File

@ -164,8 +164,8 @@ public class RailwayNetwork {
}
/**
* Get a sorted list of all rails in the network, specifying their identifier, start and end points, their length and
* their current configuration.
* Get a sorted list of all rails in the network, specifying their identifier, start and end points, their length
* and their current configuration.
*
* @return list of rails
*/

View File

@ -2,6 +2,12 @@ package edu.kit.informatik.model;
import edu.kit.informatik.ui.InvalidInputException;
/**
* A special coach, used for e.g. firefighting.
*
* @author Arne Keller
* @version 1.0
*/
public class SpecialCoach extends Coach {
/**
* ASCII art represantation of a special coach.