Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas committed Jan 13, 2017
2 parents e987ad7 + 846bb40 commit 6271bf1
Show file tree
Hide file tree
Showing 12 changed files with 419 additions and 2 deletions.
14 changes: 14 additions & 0 deletions miat.gama.extension.ifcfile/.classpath
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry exported="true" kind="lib" path="lib/ifc2x3javatoolbox_2.0.1_20130524.jar"/>
<classpathentry exported="true" kind="lib" path="lib/ifc4javatoolbox_2.0.1_20130524.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gaml">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="bin"/>
</classpath>
3 changes: 3 additions & 0 deletions miat.gama.extension.ifcfile/.factorypath
@@ -0,0 +1,3 @@
<factorypath>
<factorypathentry kind="WKSPJAR" id="/msi.gama.processor/processor/plugins/msi.gama.processor_1.4.0.jar" enabled="true" runInBatchMode="false"/>
</factorypath>
28 changes: 28 additions & 0 deletions miat.gama.extension.ifcfile/.project
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>miat.gama.extension.ifcfile</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
@@ -0,0 +1,4 @@
eclipse.preferences.version=1
org.eclipse.jdt.apt.aptEnabled=true
org.eclipse.jdt.apt.genSrcDir=gaml
org.eclipse.jdt.apt.reconcileEnabled=true
13 changes: 13 additions & 0 deletions miat.gama.extension.ifcfile/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,13 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.processAnnotations=enabled
org.eclipse.jdt.core.compiler.source=1.8
21 changes: 21 additions & 0 deletions miat.gama.extension.ifcfile/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Ifcfile
Bundle-SymbolicName: miat.gama.extension.ifcfile;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: msi.gama.core;bundle-version="1.7.0",
msi.gama.ext;bundle-version="1.7.0",
msi.gama.processor;bundle-version="1.4.0"
Bundle-ClassPath: .,
lib/ifc4javatoolbox_2.0.1_20130524.jar,
lib/ifc2x3javatoolbox_2.0.1_20130524.jar
Export-Package: ifc2x3javatoolbox.ifc2x3tc1,
ifc2x3javatoolbox.ifcmodel,
ifc2x3javatoolbox.step.parser,
ifc2x3javatoolbox.step.parser.util,
ifc4javatoolbox.ifc4,
ifc4javatoolbox.ifcmodel,
ifc4javatoolbox.step.parser,
ifc4javatoolbox.step.parser.util,
miat.gama.extension.ifcfile
7 changes: 7 additions & 0 deletions miat.gama.extension.ifcfile/build.properties
@@ -0,0 +1,7 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
lib/ifc4javatoolbox_2.0.1_20130524.jar,\
plugin.xml,\
lib/ifc2x3javatoolbox_2.0.1_20130524.jar
Binary file not shown.
Binary file not shown.
8 changes: 8 additions & 0 deletions miat.gama.extension.ifcfile/plugin.xml
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="gaml.extension">
</extension>

</plugin>

0 comments on commit 6271bf1

Please sign in to comment.