Package: VdmSourceViewer
VdmSourceViewer
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
VdmSourceViewer(Composite, IVerticalRuler, IOverviewRuler, boolean, int) |
|
|
|
|
|
||||||||||||||||||||
getReconciler() |
|
|
|
|
|
||||||||||||||||||||
setReconciler(IReconciler) |
|
|
|
|
|
Coverage
1: /*
2: * #%~
3: * org.overture.ide.ui
4: * %%
5: * Copyright (C) 2008 - 2014 Overture
6: * %%
7: * This program is free software: you can redistribute it and/or modify
8: * it under the terms of the GNU General Public License as
9: * published by the Free Software Foundation, either version 3 of the
10: * License, or (at your option) any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15: * GNU General Public License for more details.
16: *
17: * You should have received a copy of the GNU General Public
18: * License along with this program. If not, see
19: * <http://www.gnu.org/licenses/gpl-3.0.html>.
20: * #~%
21: */
22: package org.overture.ide.ui.editor.core;
23:
24:
25: import org.eclipse.jface.text.reconciler.IReconciler;
26: import org.eclipse.jface.text.source.IOverviewRuler;
27: import org.eclipse.jface.text.source.IVerticalRuler;
28: import org.eclipse.jface.text.source.SourceViewer;
29: import org.eclipse.swt.widgets.Composite;
30:
31: public class VdmSourceViewer extends SourceViewer{
32:
33:         //private VdmEditor editor = null;
34:         private IReconciler reconciler = null;
35:         
36:         public VdmSourceViewer(Composite parent, IVerticalRuler ruler,
37:                         IOverviewRuler overviewRuler, boolean overviewRulerVisible,
38:                         int styles) {
39:                 super(parent,ruler,overviewRuler,overviewRulerVisible,styles);
40:                 this.showAnnotations(true);
41:                 
42: //                setPrefixForComments();                                        
43:         }
44:
45:         
46:         
47:
48:
49:         public Object getReconciler() {
50:                 return this.reconciler;
51:         }
52:
53:         public void setReconciler(IReconciler reconciler) {
54:                 this.reconciler = reconciler;
55:                 
56:         }
57:
58:         
59: }