mirror of
https://gitlab.com/arnekeller/kit-programmieren-ws1920-final1.git
synced 2024-11-24 09:24:58 +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;
|
import edu.kit.informatik.ui.InvalidInputException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A freight coach.
|
||||||
|
*
|
||||||
|
* @author Arne Keller
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
public class FreightCoach extends Coach {
|
public class FreightCoach extends Coach {
|
||||||
/**
|
/**
|
||||||
* ASCII art representation of a freight coach.
|
* ASCII art representation of a freight coach.
|
||||||
|
@ -2,6 +2,12 @@ package edu.kit.informatik.model;
|
|||||||
|
|
||||||
import edu.kit.informatik.ui.InvalidInputException;
|
import edu.kit.informatik.ui.InvalidInputException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A passenger coach.
|
||||||
|
*
|
||||||
|
* @author Arne Keller
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
public class PassengerCoach extends Coach {
|
public class PassengerCoach extends Coach {
|
||||||
/**
|
/**
|
||||||
* ASCII art representation of a passenger 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
|
* Get a sorted list of all rails in the network, specifying their identifier, start and end points, their length
|
||||||
* their current configuration.
|
* and their current configuration.
|
||||||
*
|
*
|
||||||
* @return list of rails
|
* @return list of rails
|
||||||
*/
|
*/
|
||||||
|
@ -2,6 +2,12 @@ package edu.kit.informatik.model;
|
|||||||
|
|
||||||
import edu.kit.informatik.ui.InvalidInputException;
|
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 {
|
public class SpecialCoach extends Coach {
|
||||||
/**
|
/**
|
||||||
* ASCII art represantation of a special coach.
|
* ASCII art represantation of a special coach.
|
||||||
|
Loading…
Reference in New Issue
Block a user