Skip to content

Commit

Permalink
6916: JOverflow treemap listener depending on internal SWT class
Browse files Browse the repository at this point in the history
Reviewed-by: aptmac, ghb
  • Loading branch information
thegreystone committed Oct 6, 2020
1 parent c3b53e6 commit 63f3b35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@
import org.openjdk.jmc.ui.CoreImages;

class TreemapAction extends Action {
private static final String ICON_RESET = "reset.gif"; //$NON-NLS-1$

private final TreemapActionType actionType;
private Runnable runnable = () -> {
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@
*/
package org.openjdk.jmc.joverflow.ui.swt.events;

import org.eclipse.swt.internal.SWTEventListener;
import org.openjdk.jmc.joverflow.ui.swt.Treemap;

import java.util.EventListener;
import java.util.function.Consumer;

import org.openjdk.jmc.joverflow.ui.swt.Treemap;

/**
* Classes which implement this interface provide methods that deal with setting new item as top for
* a treemap.
*/
public interface TreemapListener extends SWTEventListener {
public interface TreemapListener extends EventListener {

/**
* Sent when a treemap becomes the new top.
Expand Down

0 comments on commit 63f3b35

Please sign in to comment.