1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.invocation;
6
7import org.mockito.Incubating;
8
9/**
10 * Describes the location of something in the source code.
11 */
12@Incubating
13public interface Location {
14
15    /**
16     * @return the location
17     */
18    String toString();
19
20}
21