Skip to content

Package: ViewModelNature

ViewModelNature

nameinstructionbranchcomplexitylinemethod
ViewModelNature()
M: 0 C: 5
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
static {...}
M: 0 C: 5
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2019 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: * EclipseSource - initial API and implementation
13: * Christian W. Damus - bug 544499
14: ******************************************************************************/
15: package org.eclipse.emfforms.ide.internal.builder;
16:
17: /**
18: * Nature for the View model projects.
19: */
20: public class ViewModelNature extends ProjectNature {
21:
22:         /** Project nature identifier. */
23:         public static final String NATURE_ID = "org.eclipse.emfforms.ide.builder.viewModelNature"; //$NON-NLS-1$
24:
25:         /** A prototype for nature instances. */
26:         public static final ViewModelNature PROTOTYPE = new ViewModelNature();
27:
28:         /**
29:          * Initializes me.
30:          */
31:         public ViewModelNature() {
32:                 super(NATURE_ID, ViewModelBuilder.BUILDER_ID);
33:         }
34:
35: }