blob: 0948e2f71703360cf35a5f2a4f915bb2c2702763 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 2021 Original NatTable authors and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0.
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Original NatTable authors and others - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ecommons.waltable.ui.binding;
import org.eclipse.statet.ecommons.waltable.ui.action.IMouseAction;
import org.eclipse.statet.ecommons.waltable.ui.matcher.IMouseEventMatcher;
public class MouseBinding {
private final IMouseEventMatcher mouseEventMatcher;
private final IMouseAction action;
public MouseBinding(final IMouseEventMatcher mouseEventMatcher, final IMouseAction action) {
this.mouseEventMatcher= mouseEventMatcher;
this.action= action;
}
public IMouseEventMatcher getMouseEventMatcher() {
return this.mouseEventMatcher;
}
public IMouseAction getAction() {
return this.action;
}
@Override
public String toString() {
return getClass().getSimpleName() + "[mouseEventMatcher=" + this.mouseEventMatcher + " action=" + this.action + "]"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
}