SDPepe/AppArt

View on GitHub
app/src/main/java/ch/epfl/sdp/appart/location/place/Place.java

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package ch.epfl.sdp.appart.location.place;

/**
 * This interface is used to represent any location. Its good.
 */
public interface Place {

    /**
     * This method returns the "description" or "name" of the location, for
     * an Address it is the address, for locality it is the city, ...
     *
     * @return the "name" or "description" of the place
     */
    String getName();
}