You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by mc...@apache.org on 2020/12/04 14:31:07 UTC

[incubator-hop] branch master updated (55fcedd -> c4d0520)

This is an automated email from the ASF dual-hosted git repository.

mcasters pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git.


    from 55fcedd  HOP-2235 Add Metadata perspective (#430)
     new cf844fc  HOP-2256 : Create a GUI events handler
     new d2921d9  HOP-2256 : Create a GUI events handler
     new 1929385  HOP-2256 : Create a GUI events handler
     new 1d22f5b  HOP-2256 : Create a GUI events handler
     new c4d0520  Merge pull request #433 from mattcasters/master

The 1141 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../apache/hop/projects/gui/ProjectsGuiPlugin.java | 586 ++++++++++++---------
 .../org/apache/hop/ui/core/bus/HopGuiEvent.java    |  48 +-
 .../org/apache/hop/ui/core/bus/HopGuiEvents.java   |  36 +-
 .../hop/ui/core/bus/HopGuiEventsHandler.java       | 216 ++++++++
 .../hop/ui/core/bus/IHopGuiEventListener.java      |  18 +-
 .../hop/ui/core/metadata/MetadataManager.java      |   2 +-
 .../main/java/org/apache/hop/ui/hopgui/HopGui.java |  20 +
 .../ui/hopgui/dialog/MetadataExplorerDialog.java   |  29 +-
 .../perspective/metadata/MetadataPerspective.java  |  16 +
 .../hop/ui/core/bus/HopGuiEventsHandlerTest.java   | 182 +++++++
 10 files changed, 851 insertions(+), 302 deletions(-)
 copy engine/src/test/java/org/apache/hop/base/MockFilenameChangeListener.java => ui/src/main/java/org/apache/hop/ui/core/bus/HopGuiEvent.java (59%)
 copy plugins/transforms/mongodb/src/main/java/org/apache/hop/mongo/MongoUtilLogger.java => ui/src/main/java/org/apache/hop/ui/core/bus/HopGuiEvents.java (60%)
 create mode 100644 ui/src/main/java/org/apache/hop/ui/core/bus/HopGuiEventsHandler.java
 copy plugins/transforms/mongodb/src/main/java/org/apache/hop/mongo/MongoUtilLogger.java => ui/src/main/java/org/apache/hop/ui/core/bus/IHopGuiEventListener.java (72%)
 create mode 100644 ui/src/test/java/org/apache/hop/ui/core/bus/HopGuiEventsHandlerTest.java