blob: 922ae1b919008f819e980f4ed01ac6cd2a30b734 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.ui.internal.swt.events;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
import org.eclipse.swt.events.ControlEvent;
import org.eclipse.swt.events.ControlListener;
/**
* Convenience implementation of {@link ControlListener}.
*/
public class ControlAdapter
implements ControlListener
{
public void controlMoved(ControlEvent e) {
// NOP
}
public void controlResized(ControlEvent e) {
// NOP
}
@Override
public String toString() {
return ObjectTools.toString(this);
}
}