Skip to content

Package: VCategorization

VCategorization

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: * EclipseSource Munich - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.spi.categorization.model;
15:
16: import org.eclipse.emf.common.util.EList;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Categorization</b></em>'.
21: * <!-- end-user-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * </p>
26: * <ul>
27: * <li>{@link org.eclipse.emf.ecp.view.spi.categorization.model.VCategorization#getCategorizations
28: * <em>Categorizations</em>}</li>
29: * </ul>
30: *
31: * @see org.eclipse.emf.ecp.view.spi.categorization.model.VCategorizationPackage#getCategorization()
32: * @model
33: * @generated
34: */
35: public interface VCategorization extends VAbstractCategorization {
36:         /**
37:          * Returns the value of the '<em><b>Categorizations</b></em>' containment reference list.
38:          * The list contents are of type {@link org.eclipse.emf.ecp.view.spi.categorization.model.VAbstractCategorization}.
39:          * <!-- begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>Categorizations</em>' containment reference list isn't clear, there really should be
42:          * more of a description here...
43:          * </p>
44:          * <!-- end-user-doc -->
45:          *
46:          * @return the value of the '<em>Categorizations</em>' containment reference list.
47:          * @see org.eclipse.emf.ecp.view.spi.categorization.model.VCategorizationPackage#getCategorization_Categorizations()
48:          * @model containment="true"
49:          * @generated
50:          */
51:         EList<VAbstractCategorization> getCategorizations();
52:
53: } // VCategorization