Merge branch 'ZEST-135' into ZEST-132
Project: http://git-wip-us.apache.org/repos/asf/zest-java/repo Commit: http://git-wip-us.apache.org/repos/asf/zest-java/commit/9c0995de Tree: http://git-wip-us.apache.org/repos/asf/zest-java/tree/9c0995de Diff: http://git-wip-us.apache.org/repos/asf/zest-java/diff/9c0995de Branch: refs/heads/ZEST-132 Commit: 9c0995de4edd4caa1db8691ad398fab7961adbf8 Parents: 81561b0 6304ddb Author: Kent Sølvsten <[email protected]> Authored: Thu Dec 17 22:02:49 2015 +0100 Committer: Kent Sølvsten <[email protected]> Committed: Thu Dec 17 22:02:49 2015 +0100 ---------------------------------------------------------------------- .../org/apache/zest/api/dataset/DataSet.java | 36 ------ .../apache/zest/api/dataset/DataSetSource.java | 27 ---- .../java/org/apache/zest/api/dataset/Query.java | 64 ---------- .../api/dataset/iterable/IterableDataSet.java | 57 --------- .../api/dataset/iterable/IterableQuery.java | 127 ------------------- .../zest/api/dataset/iterable/package.html | 21 --- .../org/apache/zest/api/dataset/package.html | 21 --- .../zest/api/event/ZestApplicationEvent.java | 23 ++++ .../api/event/ZestApplicationEventHandler.java | 23 ++++ .../org/apache/zest/api/event/ZestEvent.java | 28 ++++ .../apache/zest/api/event/ZestEventHandler.java | 23 ++++ .../apache/zest/api/event/ZestUserEvent.java | 23 ++++ .../zest/api/event/ZestUserEventHandler.java | 23 ++++ .../dataset/iterable/IterableDataSetTest.java | 61 --------- .../zest/bootstrap/ApplicationAssembly.java | 11 ++ .../bootstrap/ApplicationAssemblyFactory.java | 11 ++ .../org/apache/zest/bootstrap/Energy4Java.java | 4 + .../zest/bootstrap/ZestAssemblyEvent.java | 25 ++++ .../bootstrap/ZestAssemblyEventHandler.java | 26 ++++ .../bootstrap/handler/ModuleAssembledEvent.java | 57 +++++++++ .../apache/zest/runtime/ZestRuntimeImpl.java | 6 +- .../ApplicationAssemblyFactoryImpl.java | 18 ++- .../bootstrap/ApplicationAssemblyImpl.java | 14 +- .../bootstrap/ApplicationModelFactoryImpl.java | 10 ++ .../org/apache/zest/runtime/event/EventBus.java | 87 +++++++++++++ .../event/ModuleAssembledRuntimeEvent.java | 66 ++++++++++ .../zest/runtime/event/ZestRuntimeEvent.java | 25 ++++ .../runtime/event/ZestRuntimeEventHandler.java | 25 ++++ .../apache/zest/test/AbstractZestBaseTest.java | 10 +- 29 files changed, 532 insertions(+), 420 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zest-java/blob/9c0995de/core/runtime/src/main/java/org/apache/zest/runtime/ZestRuntimeImpl.java ---------------------------------------------------------------------- diff --cc core/runtime/src/main/java/org/apache/zest/runtime/ZestRuntimeImpl.java index ce9a239,d7f1ff3..3cd10b6 mode 100644,100755..100755 --- a/core/runtime/src/main/java/org/apache/zest/runtime/ZestRuntimeImpl.java +++ b/core/runtime/src/main/java/org/apache/zest/runtime/ZestRuntimeImpl.java
