-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a fluorescence spectroscopy data model.
- Loading branch information
1 parent
4c8c9f1
commit 85b6c46
Showing
69 changed files
with
2,038 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
chemclipse/plugins/org.eclipse.chemclipse.fsd.converter.ui/.classpath
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/> | ||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
1 change: 1 addition & 0 deletions
1
chemclipse/plugins/org.eclipse.chemclipse.fsd.converter.ui/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/bin |
28 changes: 28 additions & 0 deletions
28
chemclipse/plugins/org.eclipse.chemclipse.fsd.converter.ui/.project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>org.eclipse.chemclipse.fsd.converter.ui</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> |
2 changes: 2 additions & 0 deletions
2
...lugins/org.eclipse.chemclipse.fsd.converter.ui/.settings/org.eclipse.core.resources.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
eclipse.preferences.version=1 | ||
encoding/<project>=utf8 |
7 changes: 7 additions & 0 deletions
7
...ipse/plugins/org.eclipse.chemclipse.fsd.converter.ui/.settings/org.eclipse.jdt.core.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 | ||
org.eclipse.jdt.core.compiler.compliance=17 | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
org.eclipse.jdt.core.compiler.source=17 |
22 changes: 22 additions & 0 deletions
22
chemclipse/plugins/org.eclipse.chemclipse.fsd.converter.ui/META-INF/MANIFEST.MF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Manifest-Version: 1.0 | ||
Automatic-Module-Name: org.eclipse.chemclipse.wsd.converter.ui | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: FSD converter UI | ||
Bundle-SymbolicName: org.eclipse.chemclipse.fsd.converter.ui;singleton:=true | ||
Bundle-Version: 0.9.0.qualifier | ||
Bundle-Activator: org.eclipse.chemclipse.fsd.converter.ui.Activator | ||
Bundle-Vendor: ChemClipse | ||
Require-Bundle: org.eclipse.ui;bundle-version="3.207.0", | ||
org.eclipse.core.runtime;bundle-version="3.32.0", | ||
org.eclipse.chemclipse.converter;bundle-version="0.9.0", | ||
org.eclipse.chemclipse.processing;bundle-version="0.9.0", | ||
org.apache.commons.commons-io;bundle-version="2.17.0", | ||
org.eclipse.chemclipse.logging;bundle-version="0.9.0", | ||
org.eclipse.chemclipse.support.ui;bundle-version="0.9.0", | ||
org.eclipse.chemclipse.converter.ui;bundle-version="0.9.0", | ||
org.eclipse.chemclipse.processing.ui;bundle-version="0.9.0", | ||
org.eclipse.chemclipse.fsd.model;bundle-version="0.9.0", | ||
org.eclipse.chemclipse.fsd.converter;bundle-version="0.9.0" | ||
Bundle-RequiredExecutionEnvironment: JavaSE-17 | ||
Bundle-ActivationPolicy: lazy | ||
Export-Package: org.eclipse.chemclipse.fsd.converter.ui.swt |
5 changes: 5 additions & 0 deletions
5
chemclipse/plugins/org.eclipse.chemclipse.fsd.converter.ui/build.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
source.. = src/ | ||
output.. = bin/ | ||
bin.includes = META-INF/,\ | ||
.,\ | ||
plugin.xml |
13 changes: 13 additions & 0 deletions
13
chemclipse/plugins/org.eclipse.chemclipse.fsd.converter.ui/plugin.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?eclipse version="3.4"?> | ||
<plugin> | ||
<extension | ||
point="org.eclipse.ui.preferencePages"> | ||
<page | ||
category="org.eclipse.chemclipse.converter.ui.converterPreferencePage" | ||
class="org.eclipse.chemclipse.fsd.converter.ui.preferences.PreferencePage" | ||
id="org.eclipse.chemclipse.wsd.converter.ui.converterPreferencePage" | ||
name="Converter WSD"> | ||
</page> | ||
</extension> | ||
</plugin> |
60 changes: 60 additions & 0 deletions
60
...se.chemclipse.fsd.converter.ui/src/org/eclipse/chemclipse/fsd/converter/ui/Activator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2013, 2018 Lablicate GmbH. | ||
* | ||
* All rights reserved. | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v1.0 which accompanies this distribution, | ||
* and is available at http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Dr. Philip Wenig - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.chemclipse.fsd.converter.ui; | ||
|
||
import org.eclipse.ui.plugin.AbstractUIPlugin; | ||
import org.osgi.framework.BundleContext; | ||
|
||
/** | ||
* The activator class controls the plug-in life cycle | ||
*/ | ||
public class Activator extends AbstractUIPlugin { | ||
|
||
// The shared instance | ||
private static Activator plugin; | ||
|
||
/** | ||
* The constructor | ||
*/ | ||
public Activator() { | ||
} | ||
|
||
/* | ||
* (non-Javadoc) | ||
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) | ||
*/ | ||
public void start(BundleContext context) throws Exception { | ||
|
||
super.start(context); | ||
plugin = this; | ||
} | ||
|
||
/* | ||
* (non-Javadoc) | ||
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext) | ||
*/ | ||
public void stop(BundleContext context) throws Exception { | ||
|
||
plugin = null; | ||
super.stop(context); | ||
} | ||
|
||
/** | ||
* Returns the shared instance | ||
* | ||
* @return the shared instance | ||
*/ | ||
public static Activator getDefault() { | ||
|
||
return plugin; | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
...nverter.ui/src/org/eclipse/chemclipse/fsd/converter/ui/l10n/FluorescenceSpectroscopy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2025 Lablicate GmbH. | ||
* | ||
* All rights reserved. | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v1.0 which accompanies this distribution, | ||
* and is available at http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Matthias Mailänder - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.chemclipse.fsd.converter.ui.l10n; | ||
|
||
import org.eclipse.osgi.util.NLS; | ||
|
||
public class FluorescenceSpectroscopy extends NLS { | ||
|
||
private static final String BUNDLE_NAME = "org.eclipse.chemclipse.fsd.converter.ui.l10n.messages"; //$NON-NLS-1$ | ||
// | ||
public static String saveFluorescence; | ||
// | ||
static { | ||
NLS.initializeMessages(BUNDLE_NAME, FluorescenceSpectroscopy.class); | ||
} | ||
|
||
private FluorescenceSpectroscopy() { | ||
|
||
} | ||
} |
1 change: 1 addition & 0 deletions
1
...pse.fsd.converter.ui/src/org/eclipse/chemclipse/fsd/converter/ui/l10n/messages.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
saveFluorescence=Save fluorescence spectrum |
1 change: 1 addition & 0 deletions
1
....fsd.converter.ui/src/org/eclipse/chemclipse/fsd/converter/ui/l10n/messages_de.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
saveFluorescence=Speichere Fluoreszenz-Spektrum |
38 changes: 38 additions & 0 deletions
38
....converter.ui/src/org/eclipse/chemclipse/fsd/converter/ui/preferences/PreferencePage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2013, 2018 Lablicate GmbH. | ||
* | ||
* All rights reserved. This | ||
* program and the accompanying materials are made available under the terms of | ||
* the Eclipse Public License v1.0 which accompanies this distribution, and is | ||
* available at http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Dr. Philip Wenig - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.chemclipse.fsd.converter.ui.preferences; | ||
|
||
import org.eclipse.chemclipse.fsd.converter.ui.Activator; | ||
import org.eclipse.jface.preference.FieldEditorPreferencePage; | ||
import org.eclipse.ui.IWorkbench; | ||
import org.eclipse.ui.IWorkbenchPreferencePage; | ||
|
||
public class PreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage { | ||
|
||
public PreferencePage() { | ||
|
||
super(GRID); | ||
setPreferenceStore(Activator.getDefault().getPreferenceStore()); | ||
setTitle("FSD Converter"); | ||
setDescription("Fluorescence Spectroscopy Converter"); | ||
} | ||
|
||
@Override | ||
protected void createFieldEditors() { | ||
|
||
} | ||
|
||
@Override | ||
public void init(IWorkbench workbench) { | ||
|
||
} | ||
} |
Oops, something went wrong.