KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > team > internal > ui > synchronize > ISynchronizeModelProviderDescriptor


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.team.internal.ui.synchronize;
12
13 import org.eclipse.jface.resource.ImageDescriptor;
14
15 public interface ISynchronizeModelProviderDescriptor {
16     /**
17      * Returns the name of this model provider. This can be shown to the user.
18      * @return the name of this model provider.
19      */

20     public String JavaDoc getName();
21
22     /**
23      * Returns the unique identifier for this model provider.
24      * @return the unique identifier for this model provider.
25      */

26     public String JavaDoc getId();
27     
28     /**
29      * Returns the image that represents this model provider. This image
30      * will be shown to the user.
31      * @return the image that represents this model provider.
32      */

33     public ImageDescriptor getImageDescriptor();
34 }
35
Popular Tags