Cleaned up:
authorDaniel Kirschten <daniel.kirschten@gmx.de>
Sun, 23 Jun 2019 22:35:16 +0000 (00:35 +0200)
committerDaniel Kirschten <daniel.kirschten@gmx.de>
Sun, 23 Jun 2019 22:35:16 +0000 (00:35 +0200)
-Empty but required folders now are being tracked via .gitkeep files
-Cleaned build.properties files
-Moved test source build output folders to bin/test
-Removed duplicate ClickableSubmodelComponentsTest
-Removed source folders from .classpath in projects that don't need /
have source folders

19 files changed:
net.mograsim.logic.core/.classpath
net.mograsim.logic.core/.gitignore
net.mograsim.logic.core/build.properties
net.mograsim.logic.ui.am2900/.classpath
net.mograsim.logic.ui.am2900/META-INF/MANIFEST.MF
net.mograsim.logic.ui.am2900/build.properties
net.mograsim.logic.ui.am2900/src/net/mograsim/logic/ui/examples/ClickableSubmodelComponentsTest.java [deleted file]
net.mograsim.logic.ui.am2900/testBin/.gitignore [deleted file]
net.mograsim.logic.ui/build.properties
net.mograsim.plugin.branding/.classpath
net.mograsim.plugin.branding/.gitignore [new file with mode: 0644]
net.mograsim.plugin.branding/build.properties
net.mograsim.plugin.branding/icons/.gitkeep [new file with mode: 0644]
net.mograsim.plugin.core.nl_de/.classpath
net.mograsim.plugin.core.nl_de/build.properties
net.mograsim.plugin.docs/.classpath
net.mograsim.plugin.docs/.gitignore
net.mograsim.plugin.docs/build.properties
net.mograsim.plugin.docs/html/.gitkeep [new file with mode: 0644]

index 191b4f0..da70a87 100644 (file)
@@ -7,8 +7,8 @@
                </attributes>
        </classpathentry>
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
-       <classpathentry kind="src" path="src"/>
-       <classpathentry kind="src" output="testBin" path="test">
+       <classpathentry kind="src" output="bin/src" path="src"/>
+       <classpathentry kind="src" output="bin/test" path="test">
                <attributes>
                        <attribute name="test" value="true"/>
                </attributes>
index 43d94ef..265a1ae 100644 (file)
@@ -1,6 +1,4 @@
 /bin/
-/testBin/
-*.class
 *.log
 
 # package files
index 33e29ae..d6642e6 100644 (file)
@@ -1,4 +1,4 @@
 source.. = src/
 bin.includes = META-INF/,\
                .,\
-               OSGI-INF/l10n/bundle.properties,\
+               OSGI-INF/
index 191b4f0..da70a87 100644 (file)
@@ -7,8 +7,8 @@
                </attributes>
        </classpathentry>
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
-       <classpathentry kind="src" path="src"/>
-       <classpathentry kind="src" output="testBin" path="test">
+       <classpathentry kind="src" output="bin/src" path="src"/>
+       <classpathentry kind="src" output="bin/test" path="test">
                <attributes>
                        <attribute name="test" value="true"/>
                </attributes>
index 4faa556..8cd5a45 100644 (file)
@@ -4,6 +4,7 @@ Bundle-Name: %Bundle-Name
 Bundle-SymbolicName: net.mograsim.logic.ui.am2900;singleton:=true
 Bundle-Version: 0.1.0.qualifier
 Export-Package: net.mograsim.logic.ui.examples,
+ net.mograsim.logic.ui.model.components.mi.nandbased,
  net.mograsim.logic.ui.model.components.mi.nandbased.am2901
 Bundle-RequiredExecutionEnvironment: JavaSE-11
 Require-Bundle: net.mograsim.logic.ui;bundle-version="0.1.0";visibility:=reexport
index 99caae6..d6642e6 100644 (file)
@@ -1,4 +1,4 @@
 source.. = src/
 bin.includes = META-INF/,\
                .,\
-               OSGI-INF/l10n/bundle.properties
+               OSGI-INF/
diff --git a/net.mograsim.logic.ui.am2900/src/net/mograsim/logic/ui/examples/ClickableSubmodelComponentsTest.java b/net.mograsim.logic.ui.am2900/src/net/mograsim/logic/ui/examples/ClickableSubmodelComponentsTest.java
deleted file mode 100644 (file)
index cd45ee6..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-package net.mograsim.logic.ui.examples;
-
-import net.mograsim.logic.ui.SimpleLogicUIStandalone;
-import net.mograsim.logic.ui.model.ViewModelModifiable;
-import net.mograsim.logic.ui.model.components.GUIBitDisplay;
-import net.mograsim.logic.ui.model.components.GUIManualSwitch;
-import net.mograsim.logic.ui.model.components.SimpleRectangularSubmodelComponent;
-
-public class ClickableSubmodelComponentsTest
-{
-       public static void main(String[] args)
-       {
-               SimpleLogicUIStandalone.executeVisualisation(ClickableSubmodelComponentsTest::createExample);
-       }
-
-       public static void createExample(ViewModelModifiable model)
-       {
-               SimpleRectangularSubmodelComponent comp = new SimpleRectangularSubmodelComponent(model, 1, "")
-               {
-                       {
-                               setSubmodelScale(.4);
-                               setOutputPins("O0");
-
-                               GUIManualSwitch sw = new GUIManualSwitch(submodelModifiable);
-                               GUIBitDisplay bd = new GUIBitDisplay(submodelModifiable);
-
-                               sw.moveTo(10, 5);
-                               bd.moveTo(50, 5);
-
-                       }
-               };
-               comp.moveTo(10, 10);
-       }
-}
\ No newline at end of file
diff --git a/net.mograsim.logic.ui.am2900/testBin/.gitignore b/net.mograsim.logic.ui.am2900/testBin/.gitignore
deleted file mode 100644 (file)
index d64c606..0000000
+++ /dev/null
@@ -1 +0,0 @@
-/net/
index 99caae6..d6642e6 100644 (file)
@@ -1,4 +1,4 @@
 source.. = src/
 bin.includes = META-INF/,\
                .,\
-               OSGI-INF/l10n/bundle.properties
+               OSGI-INF/
index e801ebf..bc3587d 100644 (file)
@@ -2,6 +2,5 @@
 <classpath>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
-       <classpathentry kind="src" path="src"/>
        <classpathentry kind="output" path="bin"/>
 </classpath>
diff --git a/net.mograsim.plugin.branding/.gitignore b/net.mograsim.plugin.branding/.gitignore
new file mode 100644 (file)
index 0000000..ae3c172
--- /dev/null
@@ -0,0 +1 @@
+/bin/
index bfb1e2c..aee22c0 100644 (file)
@@ -1,5 +1,3 @@
-source.. = src/
-output.. = bin/
 bin.includes = META-INF/,\
                .,\
                eclipse_with_icon_32.png,\
diff --git a/net.mograsim.plugin.branding/icons/.gitkeep b/net.mograsim.plugin.branding/icons/.gitkeep
new file mode 100644 (file)
index 0000000..e69de29
index e801ebf..bc3587d 100644 (file)
@@ -2,6 +2,5 @@
 <classpath>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
-       <classpathentry kind="src" path="src"/>
        <classpathentry kind="output" path="bin"/>
 </classpath>
index 34d2e4d..34520a0 100644 (file)
@@ -1,4 +1,3 @@
-source.. = src/
-output.. = bin/
 bin.includes = META-INF/,\
-               .
+               .,\
+               OSGI-INF/
index e801ebf..bc3587d 100644 (file)
@@ -2,6 +2,5 @@
 <classpath>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
-       <classpathentry kind="src" path="src"/>
        <classpathentry kind="output" path="bin"/>
 </classpath>
index cb42e2e..04b0082 100644 (file)
@@ -1,2 +1,3 @@
 /bin/
-/html/
+/html/*
+!/html/.gitkeep
\ No newline at end of file
index fc53675..0b7cb31 100644 (file)
@@ -1,5 +1,3 @@
-source.. = src/
-output.. = bin/
 bin.includes = plugin.xml,\
                META-INF/,\
                .,\
diff --git a/net.mograsim.plugin.docs/html/.gitkeep b/net.mograsim.plugin.docs/html/.gitkeep
new file mode 100644 (file)
index 0000000..e69de29