Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d8ee4ee26445a8cc9018f145a7632acf7ba6b916 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*******************************************************************************
 * Copyright (c) 2000, 2006 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.ui.synchronize;

import org.eclipse.jface.resource.ImageDescriptor;

/**
 * A participant descriptor contains the content of the
 * <code>synchronizeParticipants</code> extension section for
 * for a registered participant type in the declaring plug-in's
 * manifest (<code>plugin.xml</code>) file.
 * <p>
 * Clients are not intended to implement this interface.
 * </p>
 * @see ISynchronizeManager#getParticipantDescriptor(String)
 * @since 3.0
 */
public interface ISynchronizeParticipantDescriptor {
	/**
	 * Returns the name of this participant. This can be shown to the user.
	 *
	 * @return the name of this participant. This can be shown to the user.
	 */
	public String getName();

	/**
	 * Returns a string describing this participant type.
	 *
	 * @return a string describing this participant type.
	 */
	public String getDescription();

	/**
	 * Returns the unique id that identifies this participant type.
	 *
	 * @return the unique id that identifies this participant type.
	 */
	public String getId();

	/**
	 * Returns the image descriptor for this participant type.
	 *
	 * @return the image descriptor for this participant type.
	 */
	public ImageDescriptor getImageDescriptor();

	/**
	 * Returns if this participant can be persisted between sessions.
	 *
	 * @return <code>true</code> if this participant can be persisted between sessions
	 * and false otherwise.
	 */
	public boolean isPersistent();
}

Back to the top