Skip to content

Package: NotCondition

NotCondition

Coverage

1: /**
2: * Copyright (c) 2017 Christian W. Damus 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: * Christian W. Damus - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.spi.rule.model;
15:
16: /**
17: * <!-- begin-user-doc -->
18: * A representation of the model object '<em><b>Not Condition</b></em>'.
19: * <!-- end-user-doc -->
20: *
21: * <p>
22: * The following features are supported:
23: * </p>
24: * <ul>
25: * <li>{@link org.eclipse.emf.ecp.view.spi.rule.model.NotCondition#getCondition <em>Condition</em>}</li>
26: * </ul>
27: *
28: * @see org.eclipse.emf.ecp.view.spi.rule.model.RulePackage#getNotCondition()
29: * @model
30: * @generated
31: */
32: public interface NotCondition extends Condition {
33:         /**
34:          * Returns the value of the '<em><b>Condition</b></em>' containment reference.
35:          * <!-- begin-user-doc -->
36:          * <p>
37:          * If the meaning of the '<em>Condition</em>' containment reference isn't clear,
38:          * there really should be more of a description here...
39:          * </p>
40:          * <!-- end-user-doc -->
41:          *
42:          * @return the value of the '<em>Condition</em>' containment reference.
43:          * @see #setCondition(Condition)
44:          * @see org.eclipse.emf.ecp.view.spi.rule.model.RulePackage#getNotCondition_Condition()
45:          * @model containment="true" required="true"
46:          * @generated
47:          */
48:         Condition getCondition();
49:
50:         /**
51:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.rule.model.NotCondition#getCondition
52:          * <em>Condition</em>}' containment reference.
53:          * <!-- begin-user-doc -->
54:          * <!-- end-user-doc -->
55:          *
56:          * @param value the new value of the '<em>Condition</em>' containment reference.
57:          * @see #getCondition()
58:          * @generated
59:          */
60:         void setCondition(Condition value);
61:
62: } // NotCondition