Remove snippets that were stored in an incorrect place.
authorbsinou <bsinou@argeo.org>
Sat, 14 Jan 2017 10:45:10 +0000 (11:45 +0100)
committerbsinou <bsinou@argeo.org>
Sat, 14 Jan 2017 10:45:10 +0000 (11:45 +0100)
org.argeo.eclipse.ui/.classpath
org.argeo.eclipse.ui/build.properties
org.argeo.eclipse.ui/ext/test/org/argeo/eclipse/ui/fs/AdvancedBrowserExample.java [deleted file]
org.argeo.eclipse.ui/ext/test/org/argeo/eclipse/ui/fs/SimpleBrowserExample.java [deleted file]
org.argeo.eclipse.ui/ext/test/org/argeo/eclipse/ui/fs/SimpleTreeBrowserExample.java [deleted file]

index 4e5da1da654885181e6bd7f78268ac345aa09d44..457b115718901142f2212cc654481644186b3114 100644 (file)
@@ -1,7 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
        <classpathentry kind="src" path="src" />
-       <classpathentry kind="src" path="ext/test" />
        <classpathentry kind="con"
                path="org.eclipse.pde.core.requiredPlugins" />
        <classpathentry kind="con"
index 3fbb7e2748a5af5d7b36dc4571fb9820ea123a6c..0e0438744c3be63d9d042cf97e4afb15608d5d86 100644 (file)
@@ -1,15 +1,5 @@
-source.. = src/,\
-                       ext/test/
+source.. = src/
 output.. = bin/
 bin.includes = META-INF/,\
                .
-additional.bundles =   org.apache.log4j,\
-                       org.apache.commons.collections,\
-                       org.argeo.cms,\
-                       org.eclipse.core.commands,\
-                       org.eclipse.core.runtime,\
-                       org.junit,\
-                                               org.slf4j.api,\
-                       org.slf4j.commons.logging,\
-                       org.slf4j.log4j12,\
-                     
\ No newline at end of file
+               
\ No newline at end of file
diff --git a/org.argeo.eclipse.ui/ext/test/org/argeo/eclipse/ui/fs/AdvancedBrowserExample.java b/org.argeo.eclipse.ui/ext/test/org/argeo/eclipse/ui/fs/AdvancedBrowserExample.java
deleted file mode 100644 (file)
index b5d6342..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-package org.argeo.eclipse.ui.fs;
-
-import java.nio.file.Path;
-import java.nio.file.Paths;
-
-import org.argeo.eclipse.ui.EclipseUiUtils;
-import org.eclipse.swt.widgets.Control;
-import org.eclipse.swt.widgets.Display;
-import org.eclipse.swt.widgets.Shell;
-
-public class AdvancedBrowserExample {
-
-       private static String DUMMY_ABS_PATH = System.getProperty("user.home");
-       private static String DUMMY_ABS_PATH2 = "/tmp";
-
-       public static void main(String[] args) {
-               Display display = new Display();
-               Shell shell = new Shell(display);
-               shell.setLayout(EclipseUiUtils.noSpaceGridLayout());
-               shell.setText("Simple Browser Example");
-
-               AdvancedFsBrowser sftb = new AdvancedFsBrowser();
-               Path path = Paths.get(DUMMY_ABS_PATH);
-               Control body = sftb.createUi(shell, path);
-               body.setLayoutData(EclipseUiUtils.fillAll());
-               shell.open();
-               while (!shell.isDisposed()) {
-                       if (!display.readAndDispatch())
-                               display.sleep();
-               }
-               display.dispose();
-       }
-}
diff --git a/org.argeo.eclipse.ui/ext/test/org/argeo/eclipse/ui/fs/SimpleBrowserExample.java b/org.argeo.eclipse.ui/ext/test/org/argeo/eclipse/ui/fs/SimpleBrowserExample.java
deleted file mode 100644 (file)
index ba1f25a..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-package org.argeo.eclipse.ui.fs;
-
-import java.nio.file.Path;
-import java.nio.file.Paths;
-
-import org.argeo.eclipse.ui.EclipseUiUtils;
-import org.eclipse.swt.SWT;
-import org.eclipse.swt.widgets.Display;
-import org.eclipse.swt.widgets.Shell;
-
-public class SimpleBrowserExample {
-
-       private static String DUMMY_ABS_PATH = System.getProperty("user.home");
-       private static String DUMMY_ABS_PATH2 = "/tmp";
-
-       public static void main(String[] args) {
-               Display display = new Display();
-               Shell shell = new Shell(display);
-               shell.setLayout(EclipseUiUtils.noSpaceGridLayout());
-               shell.setText("Simple File system browser Example");
-
-               SimpleFsBrowser sfb = new SimpleFsBrowser(shell, SWT.NO_FOCUS);
-               Path path = Paths.get(DUMMY_ABS_PATH);
-               Path path2 = Paths.get(DUMMY_ABS_PATH2);
-               sfb.setInput(path, path2);
-               sfb.setLayoutData(EclipseUiUtils.fillAll());
-               sfb.layout(true, true);
-
-               shell.open();
-               while (!shell.isDisposed()) {
-                       if (!display.readAndDispatch())
-                               display.sleep();
-               }
-               display.dispose();
-       }
-}
diff --git a/org.argeo.eclipse.ui/ext/test/org/argeo/eclipse/ui/fs/SimpleTreeBrowserExample.java b/org.argeo.eclipse.ui/ext/test/org/argeo/eclipse/ui/fs/SimpleTreeBrowserExample.java
deleted file mode 100644 (file)
index 9166f26..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-package org.argeo.eclipse.ui.fs;
-
-import java.nio.file.Path;
-import java.nio.file.Paths;
-
-import org.argeo.eclipse.ui.EclipseUiUtils;
-import org.eclipse.swt.SWT;
-import org.eclipse.swt.widgets.Display;
-import org.eclipse.swt.widgets.Shell;
-
-public class SimpleTreeBrowserExample {
-
-       private static String DUMMY_ABS_PATH = System.getProperty("user.home");
-       private static String DUMMY_ABS_PATH2 = "/tmp";
-
-       public static void main(String[] args) {
-               Display display = new Display();
-               Shell shell = new Shell(display);
-               shell.setLayout(EclipseUiUtils.noSpaceGridLayout());
-               shell.setText("Simple Tree Browser Example");
-
-               SimpleFsTreeBrowser sftb = new SimpleFsTreeBrowser(shell, SWT.NO_FOCUS);
-               Path path = Paths.get(DUMMY_ABS_PATH);
-               Path path2 = Paths.get(DUMMY_ABS_PATH2);
-               sftb.setInput(path, path2);
-               sftb.setLayoutData(EclipseUiUtils.fillAll());
-
-               sftb.layout(true, true);
-               shell.open();
-               while (!shell.isDisposed()) {
-                       if (!display.readAndDispatch())
-                               display.sleep();
-               }
-               display.dispose();
-       }
-}