Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/jface/ItemLabelProvider.java')
-rw-r--r--common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/jface/ItemLabelProvider.java61
1 files changed, 0 insertions, 61 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/jface/ItemLabelProvider.java b/common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/jface/ItemLabelProvider.java
deleted file mode 100644
index 921a8e5712..0000000000
--- a/common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/jface/ItemLabelProvider.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2008, 2012 Oracle. 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:
- * Oracle - initial API and implementation
- ******************************************************************************/
-package org.eclipse.jpt.common.ui.jface;
-
-import org.eclipse.swt.graphics.Image;
-
-/**
- * Implementations of this interface can be used to maintain the label (image,
- * and text) of a specific item. The implementation will monitor
- * the item for any changes that affect the label and forward them appropriately
- * to the {@link Manager}.
- * <p>
- * Provisional API: This interface is part of an interim API that is still
- * under development and expected to change significantly before reaching
- * stability. It is available at this early stage to solicit feedback from
- * pioneering adopters on the understanding that any code that uses this API
- * will almost certainly be broken (repeatedly) as the API evolves.
- *
- * @see org.eclipse.jface.viewers.ILabelProvider
- */
-public interface ItemLabelProvider {
- /**
- * Return the image for the provider's item.
- *
- * @see org.eclipse.jface.viewers.ILabelProvider#getImage(Object)
- */
- Image getImage();
-
- /**
- * Return the text for the provider's item.
- *
- * @see org.eclipse.jface.viewers.ILabelProvider#getText(Object)
- */
- public String getText();
-
- /**
- * Dispose the item label provider.
- * Remove any item listeners as appropriate.
- */
- void dispose();
-
-
- /**
- * An item label provider's manager is notified whenever the item's
- * label has changed.
- */
- interface Manager {
- /**
- * The label (image and/or text) for the specified item has changed.
- * Update appropriately.
- */
- void updateLabel(Object item);
- }
-}

Back to the top