diff --git a/Morphochron/.classpath b/Morphochron/.classpath index fdfa97b5124f24df94acec4b9c81a1fe8b13ca52..02992a0bb70f6debd810992df5ec51f52e5ffba3 100644 --- a/Morphochron/.classpath +++ b/Morphochron/.classpath @@ -1,22 +1,23 @@ -<?xml version="1.0" encoding="UTF-8"?> -<classpath> - <classpathentry including="**/*.java" kind="src" output="target/classes" path="src"> - <attributes> - <attribute name="optional" value="true"/> - <attribute name="maven.pomderived" value="true"/> - </attributes> - </classpathentry> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-16"> - <attributes> - <attribute name="module" value="true"/> - <attribute name="maven.pomderived" value="true"/> - </attributes> - </classpathentry> - <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> - <attributes> - <attribute name="maven.pomderived" value="true"/> - </attributes> - </classpathentry> - <classpathentry kind="lib" path="jgoodies-forms-1.8.0.jar" sourcepath="jgoodies-forms-1.8.0-sources.jar"/> - <classpathentry kind="output" path="target/classes"/> -</classpath> +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry including="**/*.java" kind="src" output="target/classes" path="src"> + <attributes> + <attribute name="optional" value="true"/> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-16"> + <attributes> + <attribute name="module" value="true"/> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> + <attributes> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="lib" path="jgoodies-forms-1.8.0.jar" sourcepath="jgoodies-forms-1.8.0-sources.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> diff --git a/Morphochron/src/GUI_mainMenu.java b/Morphochron/src/GUI_mainMenu.java index 979caaf732d12aef666c76fefc0ab646a82090e3..25ab9a2efec561eca8790b44d1bc37dab1525939 100644 --- a/Morphochron/src/GUI_mainMenu.java +++ b/Morphochron/src/GUI_mainMenu.java @@ -151,7 +151,7 @@ public class GUI_mainMenu extends JFrame { } else { - return "/"; + return "/home/amadeus/Dokumente/Corpora/PENN Corpus/PENN-CORPORA"; } } @@ -163,7 +163,7 @@ public class GUI_mainMenu extends JFrame { } else { - return "/"; + return "/home/amadeus/Dokumente/Projekte/Morphochron"; } } /** diff --git a/Morphochron/src/Init.java b/Morphochron/src/Init.java index 2bbf14c989d3d0e97ad6c06c82964ab071b06ad6..1076f703b1e40aa48358e06d236ca5a311f3168c 100644 --- a/Morphochron/src/Init.java +++ b/Morphochron/src/Init.java @@ -46,7 +46,7 @@ public class Init GUI_mainMenu frame = new GUI_mainMenu(); frame.setVisible(true); - + System.getProperties().list(System.out); frame.getRunButton().addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -92,7 +92,7 @@ public class Init // normalizedWords.add("dignitary"); // normalizedWords.add("proposition"); // normalizedWords.add("daskommtnichtvor"); - +// frame.setMessage("All words of type " + wordclass + " selected\n"); //detect affixes in word list as a pre-processing and countercheck these with OED REST API diff --git a/Morphochron/src/InitTest.java b/Morphochron/src/InitTest.java new file mode 100644 index 0000000000000000000000000000000000000000..de1ee50bc149ca167a0bd34946945abfc786e483 --- /dev/null +++ b/Morphochron/src/InitTest.java @@ -0,0 +1,12 @@ +import static org.junit.jupiter.api.Assertions.*; + +import org.junit.jupiter.api.Test; + +class InitTest { + + @Test + void test() { + fail("Not yet implemented"); + } + +}