Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 33055f5f15e4d4f2e2e1d9362d3a4d22abf77995 (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) 2011 Atos.
 *  
 *  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:
 *  Atos - Initial API and implementation
 * 
 */
package org.eclipse.papyrus.infra.core.editorsfactory;

/**
 * 
 * @author "Arthur Daussy <a href="mailto:arthur.daussy@atos.net">arthur.daussy@atos.net</a>"
 *
 */
public interface IEditorIconFactoryExtended extends IEditorIconFactory {

	/**
	 * Return the icon URL associated to the editor used to render the model. Model represent the top level
	 * object of a model editor.
	 * 
	 * @param pageIdentifier
	 * @return
	 */
	public String getURLMainIcon(Object pageIdentifier);
}

Back to the top