Skip to content

Package: DebugViewModelService

DebugViewModelService

nameinstructionbranchcomplexitylinemethod
DebugViewModelService()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
dispose()
M: 1 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
getPriority()
M: 2 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
instantiate(ViewModelContext)
M: 1 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%

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.emf.ecp.view.internal.swt;
15:
16: import org.eclipse.emf.ecp.view.spi.context.ViewModelContext;
17: import org.eclipse.emf.ecp.view.spi.context.ViewModelService;
18:
19: /**
20: * @author Eugen
21: *
22: */
23: public class DebugViewModelService implements ViewModelService {
24:
25:         /**
26:          * {@inheritDoc}
27:          *
28:          * @see org.eclipse.emf.ecp.view.spi.context.ViewModelService#instantiate(org.eclipse.emf.ecp.view.spi.context.ViewModelContext)
29:          */
30:         @Override
31:         public void instantiate(ViewModelContext context) {
32:                 // TODO Auto-generated method stub
33:
34:         }
35:
36:         /**
37:          * {@inheritDoc}
38:          *
39:          * @see org.eclipse.emf.ecp.view.spi.context.ViewModelService#dispose()
40:          */
41:         @Override
42:         public void dispose() {
43:                 // TODO Auto-generated method stub
44:
45:         }
46:
47:         /**
48:          * {@inheritDoc}
49:          *
50:          * @see org.eclipse.emf.ecp.view.spi.context.ViewModelService#getPriority()
51:          */
52:         @Override
53:         public int getPriority() {
54:                 return 1000;
55:         }
56:
57: }