Skip to main content
summaryrefslogtreecommitdiffstats
blob: 80b13b6c4f7c9d5742fd76c0639f88a315759558 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.emf.compare.provider;

import org.eclipse.emf.compare.provider.utils.IStyledString.IComposedStyledString;

/**
 * @author <a href="mailto:axel.richard@obeo.fr">Axel Richard</a>
 */
public interface IItemStyledLabelProvider {

	/**
	 * Returns the styled text label for the given object.
	 * 
	 * @param object
	 *            the object to evaluate the styled string for.
	 * @return the styled string.
	 */
	public IComposedStyledString getStyledText(Object object);
}

Back to the top