mirror of
https://gitlab.com/arnekeller/kit-programmieren-ws1920-final1.git
synced 2024-11-24 01:15:05 +00:00
Checkstyle
This commit is contained in:
parent
e487a23251
commit
0970bfb978
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user