Skip to content

Commit 99054d1

Browse files
authored
Merge pull request #58 from Krzmbrzl/plugin
Merge source for 0.6.0
2 parents 7eadf47 + 0a69cf1 commit 99054d1

File tree

375 files changed

+15296
-666
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

375 files changed

+15296
-666
lines changed

plugin/Raven.SQDev.Editors/.classpath

+1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
44
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
55
<classpathentry kind="src" path="src"/>
6+
<classpathentry exported="true" kind="lib" path="ANTLR/antlr-runtime-4.5.3.jar"/>
67
<classpathentry kind="output" path="bin"/>
78
</classpath>
Binary file not shown.

plugin/Raven.SQDev.Editors/META-INF/MANIFEST.MF

+35-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Editors
44
Bundle-SymbolicName: raven.sqdev.editors;singleton:=true
5-
Bundle-Version: 0.3.1
5+
Bundle-Version: 0.4.0
66
Bundle-Activator: raven.sqdev.editors.activator.Activator
77
Require-Bundle: org.eclipse.ui,
88
org.eclipse.core.runtime,
@@ -11,9 +11,41 @@ Require-Bundle: org.eclipse.ui,
1111
org.eclipse.swt,
1212
raven.sqdev.util;bundle-version="0.1.0",
1313
raven.sqdev.preferences,
14-
raven.sqdev.misc;bundle-version="0.1.0"
14+
raven.sqdev.misc;bundle-version="0.1.0",
15+
org.eclipse.core.resources,
16+
org.eclipse.ui.ide
1517
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
1618
Bundle-ActivationPolicy: lazy
17-
Export-Package: raven.sqdev.editors
19+
Export-Package: org.antlr.v4.runtime;
20+
uses:="org.antlr.v4.runtime.dfa,
21+
org.antlr.v4.runtime.tree,
22+
org.antlr.v4.runtime.misc,
23+
org.antlr.v4.runtime.atn,
24+
org.antlr.v4.runtime.tree.pattern",
25+
org.antlr.v4.runtime.atn;uses:="org.antlr.v4.runtime,org.antlr.v4.runtime.dfa,org.antlr.v4.runtime.misc",
26+
org.antlr.v4.runtime.dfa;uses:="org.antlr.v4.runtime,org.antlr.v4.runtime.atn",
27+
org.antlr.v4.runtime.misc,
28+
org.antlr.v4.runtime.tree;uses:="org.antlr.v4.runtime,org.antlr.v4.runtime.misc",
29+
raven.sqdev.editors;
30+
uses:="org.eclipse.ui.editors.text,
31+
org.eclipse.swt.events,
32+
org.eclipse.jface.text.source,
33+
org.eclipse.swt.graphics,
34+
raven.sqdev.misc,
35+
org.eclipse.jface.text,
36+
org.eclipse.swt.widgets,
37+
org.eclipse.jface.viewers,
38+
org.eclipse.jface.text.contentassist,
39+
org.eclipse.core.runtime,
40+
org.eclipse.ui.texteditor,
41+
org.eclipse.jface.util,
42+
raven.sqdev.infoCollection.base,
43+
org.eclipse.jface.text.presentation,
44+
org.eclipse.swt.custom,
45+
org.antlr.v4.runtime.tree,
46+
raven.sqdev.interfaces,
47+
org.eclipse.jface.text.rules"
1848
Bundle-Vendor: Raven
1949
Import-Package: raven.sqdev.preferences.util
50+
Bundle-ClassPath: ANTLR/antlr-runtime-4.5.3.jar,
51+
.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
PROJECT=6
2+
EQUALS=5
3+
CLOSE=4
4+
ANY=15
5+
PKG=8
6+
OPEN=3
7+
NAME=7
8+
OPEN_CLOSE=2
9+
CONTAINER=9
10+
STRING=12
11+
IDENTIFIER=11
12+
ID=13
13+
WS=14
14+
INFO_TAG=1
15+
KEY=10
16+
'>'=4
17+
'='=5
18+
'<'=3
19+
'</'=2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
PROJECT=6
2+
EQUALS=5
3+
CLOSE=4
4+
ANY=15
5+
PKG=8
6+
OPEN=3
7+
NAME=7
8+
OPEN_CLOSE=2
9+
CONTAINER=9
10+
STRING=12
11+
IDENTIFIER=11
12+
ID=13
13+
WS=14
14+
INFO_TAG=1
15+
KEY=10
16+
'>'=4
17+
'='=5
18+
'<'=3
19+
'</'=2

plugin/Raven.SQDev.Editors/build.properties

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ source.. = src/
22
output.. = bin/
33
bin.includes = META-INF/,\
44
.,\
5-
plugin.xml
5+
plugin.xml,\
6+
ANTLR/,\
7+
ANTLR/antlr-runtime-4.5.3.jar

plugin/Raven.SQDev.Editors/plugin.xml

+10-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<editor
77
class="raven.sqdev.editors.BasicCodeEditor"
88
default="false"
9-
id="Raven.SQDev.Editors.BasicTextEditor"
10-
name="BasicTextEditor">
9+
id="Raven.SQDev.Editors.BasicCodeEditor"
10+
name="BasicCodeEditor">
1111
</editor>
1212
<editor
1313
class="raven.sqdev.editors.sqdevEditor.SQDevFileEditor"
@@ -17,6 +17,14 @@
1717
id="raven.sqdev.editors.sqdevfileeditor"
1818
name="SQDevFileEditor">
1919
</editor>
20+
<editor
21+
class="raven.sqdev.editors.stringTableEditor.StringTableEditor"
22+
default="true"
23+
filenames="stringtable.xml"
24+
icon="platform:plugin/raven.sqdev.util/resources/icons/StringTableIcon.png"
25+
id="raven.sqdev.editors.stringtableeditor"
26+
name="StringTableEditor">
27+
</editor>
2028
</extension>
2129

2230
</plugin>

0 commit comments

Comments
 (0)