comparison dwtx/jface/text/source/projection/ProjectionViewer.d @ 147:000f9136b8f7

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:35:05 +0200
parents 02cd5f1224d3
children f70d9508c95c
comparison
equal deleted inserted replaced
146:75302ef3f92f 147:000f9136b8f7
85 * @since 3.0 85 * @since 3.0
86 * @noextend This class is not intended to be subclassed by clients. 86 * @noextend This class is not intended to be subclassed by clients.
87 */ 87 */
88 public class ProjectionViewer : SourceViewer , ITextViewerExtension5 { 88 public class ProjectionViewer : SourceViewer , ITextViewerExtension5 {
89 89
90 private static final int BASE= INFORMATION; // see ISourceViewer.INFORMATION 90 private static const int BASE= INFORMATION; // see ISourceViewer.INFORMATION
91 91
92 /** Operation constant for the expand operation. */ 92 /** Operation constant for the expand operation. */
93 public static final int EXPAND= BASE + 1; 93 public static const int EXPAND= BASE + 1;
94 /** Operation constant for the collapse operation. */ 94 /** Operation constant for the collapse operation. */
95 public static final int COLLAPSE= BASE + 2; 95 public static const int COLLAPSE= BASE + 2;
96 /** Operation constant for the toggle projection operation. */ 96 /** Operation constant for the toggle projection operation. */
97 public static final int TOGGLE= BASE + 3; 97 public static const int TOGGLE= BASE + 3;
98 /** Operation constant for the expand all operation. */ 98 /** Operation constant for the expand all operation. */
99 public static final int EXPAND_ALL= BASE + 4; 99 public static const int EXPAND_ALL= BASE + 4;
100 /** 100 /**
101 * Operation constant for the collapse all operation. 101 * Operation constant for the collapse all operation.
102 * 102 *
103 * @since 3.2 103 * @since 3.2
104 */ 104 */
105 public static final int COLLAPSE_ALL= BASE + 5; 105 public static const int COLLAPSE_ALL= BASE + 5;
106 106
107 /** 107 /**
108 * Internal listener to changes of the annotation model. 108 * Internal listener to changes of the annotation model.
109 */ 109 */
110 private class AnnotationModelListener : IAnnotationModelListener, IAnnotationModelListenerExtension { 110 private class AnnotationModelListener : IAnnotationModelListener, IAnnotationModelListenerExtension {