Skip to content

Package: VViewResourceImpl

VViewResourceImpl

nameinstructionbranchcomplexitylinemethod
VViewResourceImpl(URI)
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
useUUIDs()
M: 0 C: 2
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-2013 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: * Johannes Faltermeier - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.spi.model.util;
15:
16: import org.eclipse.emf.common.util.URI;
17: import org.eclipse.emf.ecore.xmi.impl.XMIResourceImpl;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * The <b>Resource </b> associated with the package.
22: *
23: * @since 1.7
24: * <!-- end-user-doc -->
25: * @see org.eclipse.emf.ecp.view.spi.model.util.VViewResourceFactoryImpl
26: * @generated
27: */
28: public class VViewResourceImpl extends XMIResourceImpl {
29:         /**
30:          * Creates an instance of the resource.
31:          * <!-- begin-user-doc -->
32:          * <!-- end-user-doc -->
33:          *
34:          * @param uri the URI of the new resource.
35:          * @generated
36:          */
37:         public VViewResourceImpl(URI uri) {
38:                 super(uri);
39:         }
40:
41:         /**
42:          * {@inheritDoc}
43:          *
44:          * @see org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl#useUUIDs()
45:          * @generated NOT
46:          */
47:         @Override
48:         protected boolean useUUIDs() {
49:                 return true;
50:         }
51:
52: } // VViewResourceImpl