blob: 3d6151603b2718497203b90e072a24e2f096322e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2015 EclipseSource Muenchen GmbH and others.
*
* 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/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Johannes Faltermeier - initial API and implementation
******************************************************************************/
package org.eclipse.emfforms.internal.view.control.multiattribute.celleditor;
import org.eclipse.emf.ecore.EAttribute;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecp.view.spi.context.ViewModelContext;
import org.eclipse.emfforms.spi.view.control.multiattribute.celleditor.MultiAttributeSWTRendererCellEditorTester;
/**
* {@link MultiAttributeSWTRendererCellEditorTester Tester} for StringCellEditor.
*
* @author Johannes Faltermeier
*
*/
public class StringCellEditorTester implements MultiAttributeSWTRendererCellEditorTester {
@Override
public double isApplicable(EObject eObject, EAttribute multiAttribute,
ViewModelContext viewModelContext) {
return 0d;
}
}