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 6096178..cfd1c21 100644 (file)
@@ -7,8 +7,8 @@
                </attributes>\r
        </classpathentry>\r
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>\r
-       <classpathentry kind="src" path="src"/>\r
-       <classpathentry kind="src" output="testBin" path="test">\r
+       <classpathentry kind="src" output="bin/src" path="src"/>\r
+       <classpathentry kind="src" output="bin/test" path="test">\r
                <attributes>\r
                        <attribute name="test" value="true"/>\r
                </attributes>\r
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 6096178..cfd1c21 100644 (file)
@@ -7,8 +7,8 @@
                </attributes>\r
        </classpathentry>\r
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>\r
-       <classpathentry kind="src" path="src"/>\r
-       <classpathentry kind="src" output="testBin" path="test">\r
+       <classpathentry kind="src" output="bin/src" path="src"/>\r
+       <classpathentry kind="src" output="bin/test" path="test">\r
                <attributes>\r
                        <attribute name="test" value="true"/>\r
                </attributes>\r
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 ca3785c..dd93d7d 100644 (file)
@@ -2,6 +2,5 @@
 <classpath>\r
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>\r
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>\r
-       <classpathentry kind="src" path="src"/>\r
        <classpathentry kind="output" path="bin"/>\r
 </classpath>\r
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 4e1b18b..d3232cd 100644 (file)
@@ -1,5 +1,3 @@
-source.. = src/\r
-output.. = bin/\r
 bin.includes = META-INF/,\\r
                .,\\r
                eclipse_with_icon_32.png,\\r
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 ca3785c..dd93d7d 100644 (file)
@@ -2,6 +2,5 @@
 <classpath>\r
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>\r
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>\r
-       <classpathentry kind="src" path="src"/>\r
        <classpathentry kind="output" path="bin"/>\r
 </classpath>\r
index 41eb6ad..e71aa03 100644 (file)
@@ -1,4 +1,3 @@
-source.. = src/\r
-output.. = bin/\r
 bin.includes = META-INF/,\\r
-               .\r
+               .,\\r
+               OSGI-INF/\r
index ca3785c..dd93d7d 100644 (file)
@@ -2,6 +2,5 @@
 <classpath>\r
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>\r
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>\r
-       <classpathentry kind="src" path="src"/>\r
        <classpathentry kind="output" path="bin"/>\r
 </classpath>\r
index cb42e2e..04b0082 100644 (file)
@@ -1,2 +1,3 @@
 /bin/
-/html/
+/html/*
+!/html/.gitkeep
\ No newline at end of file
index baf92ee..8b2e440 100644 (file)
@@ -1,5 +1,3 @@
-source.. = src/\r
-output.. = bin/\r
 bin.includes = plugin.xml,\\r
                META-INF/,\\r
                .,\\r
diff --git a/net.mograsim.plugin.docs/html/.gitkeep b/net.mograsim.plugin.docs/html/.gitkeep
new file mode 100644 (file)
index 0000000..e69de29