]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/componentTypeEditor/SymbolCodeEditor.java
Fix change of type in component property editor when range is present
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / componentTypeEditor / SymbolCodeEditor.java
1 /*******************************************************************************
2  * Copyright (c) 2013, 2015 Association for Decentralized Information Management in
3  * Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *     Semantum Oy - adaption to SCLModuleEditor/TextEditor
12  *******************************************************************************/
13 package org.simantics.modeling.ui.componentTypeEditor;
14
15 import org.eclipse.swt.widgets.Display;
16 import org.eclipse.ui.PlatformUI;
17 import org.simantics.scl.ui.editor.SCLSourceViewerConfigurationNew;
18 import org.simantics.scl.ui.editor.SharedTextColorsNew;
19
20 /**
21  * @author Antti Villberg
22  */
23 public class SymbolCodeEditor extends SCLModuleEditor {
24
25     public SymbolCodeEditor() {
26         super();
27     }
28
29     @Override
30     protected void preInitialize() {
31         Display display = PlatformUI.getWorkbench().getDisplay();
32         SCLSourceViewerConfigurationNew sourceViewerConfiguration = new SCLSourceViewerConfigurationNew(resourceManager);
33         setDocumentProvider(new SymbolCodeDocumentProvider2(sourceViewerConfiguration, display, this));
34         setSourceViewerConfiguration(sourceViewerConfiguration);
35         
36     }
37
38 }