Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5fa0431d04aca1af345d405f660d3b8a4b5452ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*******************************************************************************
 * Copyright (c) 2013 Obeo.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Obeo - initial API and implementation
 *******************************************************************************/
package org.eclipse.emf.compare.provider;

/**
 * This is the interface implemented to provide a description for an item.
 * 
 * @author <a href="mailto:axel.richard@obeo.fr">Axel Richard</a>
 * @since 3.0
 */
public interface IItemDescriptionProvider {

	/**
	 * Returns the description for the given object.
	 * 
	 * @param object
	 *            the object to evaluate the description for.
	 * @return the description.
	 */
	String getDescription(Object object);

}

Back to the top