-
-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5917 from chrisrueger/add-double-click-handler-re…
…solutionview Add double click handler resolutionview
- Loading branch information
Showing
7 changed files
with
298 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package bndtools.views; | ||
|
||
/** | ||
* Topics for the EventBroker which is used for communication between different | ||
* views. For example if View1 sends an event to View2 wants to open a dialog in | ||
* the other view. . | ||
*/ | ||
public enum ViewEventTopics { | ||
|
||
/** | ||
* Event to open the advances search of the repositories view. | ||
*/ | ||
REPOSITORIESVIEW_OPEN_ADVANCED_SEARCH("EVENT/RepositoriesView/openAdvancedSearch"); | ||
|
||
private String eventtype; | ||
|
||
ViewEventTopics(String eventtype) { | ||
this.eventtype = eventtype; | ||
} | ||
|
||
public String topic() { | ||
return eventtype; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return eventtype; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.