Skip to content
This repository was archived by the owner on Jan 12, 2022. It is now read-only.

Commit f9b0f1e

Browse files
committed
EMFxcel demo for the new IncQuery
1 parent bfc685c commit f9b0f1e

39 files changed

+535
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry exported="true" kind="lib" path="lib/poi/poi-3.10-FINAL-20140208.jar"/>
4+
<classpathentry exported="true" kind="lib" path="lib/poi/poi-examples-3.10-FINAL-20140208.jar"/>
5+
<classpathentry exported="true" kind="lib" path="lib/poi/poi-excelant-3.10-FINAL-20140208.jar"/>
6+
<classpathentry exported="true" kind="lib" path="lib/poi/poi-ooxml-3.10-FINAL-20140208.jar"/>
7+
<classpathentry exported="true" kind="lib" path="lib/poi/poi-ooxml-schemas-3.10-FINAL-20140208.jar"/>
8+
<classpathentry exported="true" kind="lib" path="lib/poi/poi-scratchpad-3.10-FINAL-20140208.jar"/>
9+
<classpathentry exported="true" kind="lib" path="lib/deps/commons-codec-1.5.jar"/>
10+
<classpathentry exported="true" kind="lib" path="lib/deps/commons-logging-1.1.jar"/>
11+
<classpathentry exported="true" kind="lib" path="lib/deps/dom4j-1.6.1.jar"/>
12+
<classpathentry exported="true" kind="lib" path="lib/deps/junit-4.11.jar"/>
13+
<classpathentry exported="true" kind="lib" path="lib/deps/log4j-1.2.13.jar"/>
14+
<classpathentry exported="true" kind="lib" path="lib/deps/stax-api-1.0.1.jar"/>
15+
<classpathentry exported="true" kind="lib" path="lib/deps/xmlbeans-2.3.0.jar"/>
16+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
17+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
18+
<classpathentry kind="src" path="src"/>
19+
<classpathentry kind="output" path="bin"/>
20+
</classpath>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>net.istvanrath.emfxcel.editor.xlsx</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.pde.ManifestBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.pde.SchemaBuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
</buildSpec>
24+
<natures>
25+
<nature>org.eclipse.pde.PluginNature</nature>
26+
<nature>org.eclipse.jdt.core.javanature</nature>
27+
</natures>
28+
</projectDescription>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
4+
org.eclipse.jdt.core.compiler.compliance=1.6
5+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
6+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7+
org.eclipse.jdt.core.compiler.source=1.6
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Manifest-Version: 1.0
2+
Bundle-ManifestVersion: 2
3+
Bundle-Name: EMFxcel xlsx Editor
4+
Bundle-SymbolicName: net.istvanrath.emfxcel.editor.xlsx;singleton:=true
5+
Bundle-Version: 0.0.1.qualifier
6+
Bundle-Activator: net.istvanrath.emfxcel.editor.xlsx.Activator
7+
Bundle-Vendor: Istvan Rath
8+
Require-Bundle: org.eclipse.ui,
9+
org.eclipse.core.runtime,
10+
net.istvanrath.emfxcel.editor;bundle-version="1.0.0",
11+
net.istvanrath.emfxcel
12+
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
13+
Bundle-ActivationPolicy: lazy
14+
Bundle-ClassPath: lib/deps/commons-codec-1.5.jar,
15+
lib/deps/commons-logging-1.1.jar,
16+
lib/deps/dom4j-1.6.1.jar,
17+
lib/deps/junit-4.11.jar,
18+
lib/deps/log4j-1.2.13.jar,
19+
lib/deps/stax-api-1.0.1.jar,
20+
lib/deps/xmlbeans-2.3.0.jar,
21+
.,
22+
lib/poi/poi-3.10-FINAL-20140208.jar,
23+
lib/poi/poi-examples-3.10-FINAL-20140208.jar,
24+
lib/poi/poi-excelant-3.10-FINAL-20140208.jar,
25+
lib/poi/poi-ooxml-3.10-FINAL-20140208.jar,
26+
lib/poi/poi-ooxml-schemas-3.10-FINAL-20140208.jar,
27+
lib/poi/poi-scratchpad-3.10-FINAL-20140208.jar
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
source.. = src/
2+
output.. = bin/
3+
bin.includes = META-INF/,\
4+
.,\
5+
lib/deps/commons-codec-1.5.jar,\
6+
lib/deps/commons-logging-1.1.jar,\
7+
lib/deps/dom4j-1.6.1.jar,\
8+
lib/deps/junit-4.11.jar,\
9+
lib/deps/log4j-1.2.13.jar,\
10+
lib/deps/stax-api-1.0.1.jar,\
11+
lib/deps/xmlbeans-2.3.0.jar,\
12+
lib/poi/poi-3.10-FINAL-20140208.jar,\
13+
lib/poi/poi-examples-3.10-FINAL-20140208.jar,\
14+
lib/poi/poi-excelant-3.10-FINAL-20140208.jar,\
15+
lib/poi/poi-ooxml-3.10-FINAL-20140208.jar,\
16+
lib/poi/poi-ooxml-schemas-3.10-FINAL-20140208.jar,\
17+
lib/poi/poi-scratchpad-3.10-FINAL-20140208.jar,\
18+
plugin.xml
71.4 KB
Binary file not shown.
51.7 KB
Binary file not shown.
307 KB
Binary file not shown.
239 KB
Binary file not shown.
350 KB
Binary file not shown.

0 commit comments

Comments
 (0)