blob: 0ae83c4a613a142858f9d45f0603a72faf8eebed [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
* Miguel Garcia (Tech Univ Hamburg-Harburg) - customization for EMF Generics
*******************************************************************************/
package org.eclipse.emf.emfatic.ui.editor;
import org.eclipse.swt.events.KeyEvent;
import org.eclipse.swt.events.KeyListener;
public class EmfaticKeyListener implements KeyListener {
//private EmfaticEditor _editor = null;
public EmfaticKeyListener(EmfaticEditor emfaticEditor) {
//_editor = emfaticEditor;
}
public void keyPressed(KeyEvent e) {
}
public void keyReleased(KeyEvent e) {
// TODO Auto-generated method stub
}
}