/******************************************************************************* * Copyright (c) 2012 Obeo. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.emf.eef.runtime.ui.widgets.util; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.Viewer; import org.eclipse.swt.widgets.Control; public class EEFOverrideViewer extends Viewer { @Override public Control getControl() { // TODO Auto-generated method stub return null; } @Override public Object getInput() { // TODO Auto-generated method stub return null; } @Override public ISelection getSelection() { // TODO Auto-generated method stub return null; } @Override public void refresh() { // TODO Auto-generated method stub } @Override public void setInput(Object input) { // TODO Auto-generated method stub } @Override public void setSelection(ISelection selection, boolean reveal) { // TODO Auto-generated method stub } }