Files
G4G0-1/Semester 1/Programming 1/Java/examples/projects/chapter16/taxi-company-outline-testing/Location.java
2024-01-15 20:14:10 +00:00

16 lines
239 B
Java
Executable File

/**
* Model a location in a city.
*
* @author David J. Barnes and Michael Kölling
* @version 2016.02.29
*/
public class Location
{
/**
* Constructor for objects of class Location
*/
public Location()
{
}
}