Skip to content

Package: AbstractAdditionalSWTRenderer

AbstractAdditionalSWTRenderer

nameinstructionbranchcomplexitylinemethod
AbstractAdditionalSWTRenderer(VElement, ViewModelContext, ReportService)
M: 0 C: 6
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * Eugen - initial API and implementation
13: ******************************************************************************/
14: package org.eclipse.emfforms.spi.swt.core;
15:
16: import org.eclipse.emf.ecp.view.spi.context.ViewModelContext;
17: import org.eclipse.emf.ecp.view.spi.model.VElement;
18: import org.eclipse.emfforms.spi.common.report.ReportService;
19:
20: /**
21: * The renderer for additional controls.
22: *
23: * @author Eugen Neufeld
24: * @param <VELEMENT> the {@link VElement} this renderer is valid for
25: * @since 1.3
26: */
27: public abstract class AbstractAdditionalSWTRenderer<VELEMENT extends VElement> extends AbstractSWTRenderer<VELEMENT> {
28:
29:         /**
30:          * Default constructor.
31:          *
32:          * @param vElement the view model element to be rendered
33:          * @param viewContext the view context
34:          * @param reportService The {@link ReportService}
35:          * @since 1.6
36:          */
37:         public AbstractAdditionalSWTRenderer(VELEMENT vElement, ViewModelContext viewContext, ReportService reportService) {
38:                 super(vElement, viewContext, reportService);
39:         }
40:
41: }