Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a4c2946ac25e0b995fc18bd512d8943357781eaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
 * Copyright (c) 2007, 2013 THALES GLOBAL SERVICES.
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    Obeo - initial API and implementation
 *
 */
package org.eclipse.sirius.diagram.description.concern;

import org.eclipse.emf.common.util.EList;
import org.eclipse.sirius.diagram.description.filter.FilterDescription;
import org.eclipse.sirius.diagram.description.tool.BehaviorTool;
import org.eclipse.sirius.viewpoint.description.DocumentedElement;
import org.eclipse.sirius.viewpoint.description.IdentifiedElement;
import org.eclipse.sirius.viewpoint.description.validation.ValidationRule;

/**
 * <!-- begin-user-doc --> A representation of the model object ' <em><b>Description</b></em>'. <!-- end-user-doc -->
 *
 * <!-- begin-model-doc --> Describe a concern. A concern could be seen as an aspect. It allows to enable some filters,
 * validation rules or behaviors in one click. <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 * <li>{@link org.eclipse.sirius.diagram.description.concern.ConcernDescription#getFilters <em>Filters</em>}</li>
 * <li>{@link org.eclipse.sirius.diagram.description.concern.ConcernDescription#getRules <em>Rules</em>}</li>
 * <li>{@link org.eclipse.sirius.diagram.description.concern.ConcernDescription#getBehaviors <em>Behaviors</em>}</li>
 * </ul>
 *
 * @see org.eclipse.sirius.diagram.description.concern.ConcernPackage#getConcernDescription()
 * @model annotation="TagValues"
 * @generated
 */
public interface ConcernDescription extends DocumentedElement, IdentifiedElement {
    /**
     * Returns the value of the '<em><b>Filters</b></em>' reference list. The list contents are of type
     * {@link org.eclipse.sirius.diagram.description.filter.FilterDescription}. <!-- begin-user-doc --> <!--
     * end-user-doc --> <!-- begin-model-doc --> All filters of this concern. <!-- end-model-doc -->
     *
     * @return the value of the '<em>Filters</em>' reference list.
     * @see org.eclipse.sirius.diagram.description.concern.ConcernPackage#getConcernDescription_Filters()
     * @model
     * @generated
     */
    EList<FilterDescription> getFilters();

    /**
     * Returns the value of the '<em><b>Rules</b></em>' reference list. The list contents are of type
     * {@link org.eclipse.sirius.viewpoint.description.validation.ValidationRule} . <!-- begin-user-doc --> <!--
     * end-user-doc --> <!-- begin-model-doc --> All rules of this concern. <!-- end-model-doc -->
     *
     * @return the value of the '<em>Rules</em>' reference list.
     * @see org.eclipse.sirius.diagram.description.concern.ConcernPackage#getConcernDescription_Rules()
     * @model
     * @generated
     */
    EList<ValidationRule> getRules();

    /**
     * Returns the value of the '<em><b>Behaviors</b></em>' reference list. The list contents are of type
     * {@link org.eclipse.sirius.diagram.description.tool.BehaviorTool}. <!-- begin-user-doc --> <!-- end-user-doc -->
     * <!-- begin-model-doc --> All behaviors of the concern. <!-- end-model-doc -->
     *
     * @return the value of the '<em>Behaviors</em>' reference list.
     * @see org.eclipse.sirius.diagram.description.concern.ConcernPackage#getConcernDescription_Behaviors()
     * @model
     * @generated
     */
    EList<BehaviorTool> getBehaviors();

} // ConcernDescription

Back to the top