comparison org.eclipse.jface.text/projection/org/eclipse/jface/text/source/projection/IProjectionListener.d @ 12:bc29606a740c

Added dwt-addons in original directory structure of eclipse.org
author Frank Benoit <benoit@tionex.de>
date Sat, 14 Mar 2009 18:23:29 +0100
parents
children
comparison
equal deleted inserted replaced
11:43904fec5dca 12:bc29606a740c
1 /*******************************************************************************
2 * Copyright (c) 2000, 2005 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 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module org.eclipse.jface.text.source.projection.IProjectionListener;
14
15 import org.eclipse.jface.text.source.projection.ProjectionViewer; // packageimport
16 import org.eclipse.jface.text.source.projection.ProjectionSupport; // packageimport
17 import org.eclipse.jface.text.source.projection.IProjectionPosition; // packageimport
18 import org.eclipse.jface.text.source.projection.AnnotationBag; // packageimport
19 import org.eclipse.jface.text.source.projection.ProjectionSummary; // packageimport
20 import org.eclipse.jface.text.source.projection.ProjectionAnnotationHover; // packageimport
21 import org.eclipse.jface.text.source.projection.ProjectionRulerColumn; // packageimport
22 import org.eclipse.jface.text.source.projection.ProjectionAnnotationModel; // packageimport
23 import org.eclipse.jface.text.source.projection.SourceViewerInformationControl; // packageimport
24 import org.eclipse.jface.text.source.projection.ProjectionAnnotation; // packageimport
25
26
27 import java.lang.all;
28
29 /**
30 * Implementers registered with a
31 * {@link org.eclipse.jface.text.source.projection.ProjectionViewer} get
32 * informed when the projection mode of the viewer gets enabled and when it gets
33 * disabled.
34 *
35 * @since 3.0
36 */
37 public interface IProjectionListener {
38
39 /**
40 * Tells this listener that projection has been enabled.
41 */
42 void projectionEnabled();
43
44 /**
45 * Tells this listener that projection has been disabled.
46 */
47 void projectionDisabled();
48 }