Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/source/IVerticalRulerListener.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/source/IVerticalRulerListener.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/IVerticalRulerListener.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/IVerticalRulerListener.java
deleted file mode 100644
index 1ee9aca0e9b..00000000000
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/IVerticalRulerListener.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.jface.text.source;
-
-import org.eclipse.swt.widgets.Menu;
-
-
-/**
- * Interface for listening to annotation related events happening on a vertical ruler.
- * <p>
- * This interface may be implemented by clients.
- * </p>
- *
- * @since 3.0
- */
-public interface IVerticalRulerListener {
-
- /**
- * Called when an annotation is selected in the UI.
- *
- * @param event the annotation event that occurred
- */
- void annotationSelected(VerticalRulerEvent event);
-
- /**
- * Called when a default selection occurs on an
- * annotation.
- *
- * @param event the annotation event that occurred
- */
- void annotationDefaultSelected(VerticalRulerEvent event);
-
- /**
- * Called when the context menu is opened on an annotation.
- *
- * @param event the annotation event that occurred
- * @param menu the menu that is about to be shown
- */
- void annotationContextMenuAboutToShow(VerticalRulerEvent event, Menu menu);
-}

Back to the top