blob: ca6e9922e58275a49df4fcde92b08fab5710f20c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2014 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.emf.ecp.view.custom.ui.swt.di.renderer;
import org.eclipse.emf.ecp.view.model.common.ECPRendererTester;
import org.eclipse.emf.ecp.view.spi.context.ViewModelContext;
import org.eclipse.emf.ecp.view.spi.custom.model.VCustomControl;
import org.eclipse.emf.ecp.view.spi.model.VElement;
/**
*
* @author jfaltermeier
*
*/
public class DICustomControlSWTRendererTester implements ECPRendererTester {
@Override
public int isApplicable(VElement vElement, ViewModelContext viewModelContext) {
if (VCustomControl.class.isInstance(vElement)) {
return 11;
}
return NOT_APPLICABLE;
}
}