Skip to content

Package: EnableRule

EnableRule

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 GmbH - 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>Enable Rule</b></em>'.
19: *
20: * @since 1.2
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.rule.model.EnableRule#isDisable <em>Disable</em>}</li>
28: * </ul>
29: *
30: * @see org.eclipse.emf.ecp.view.spi.rule.model.RulePackage#getEnableRule()
31: * @model
32: * @generated
33: */
34: public interface EnableRule extends Rule {
35:         /**
36:          * Returns the value of the '<em><b>Disable</b></em>' attribute.
37:          * <!-- begin-user-doc -->
38:          * <p>
39:          * If the meaning of the '<em>Disable</em>' attribute isn't clear, there really should be more of a description
40:          * here...
41:          * </p>
42:          * <!-- end-user-doc -->
43:          *
44:          * @return the value of the '<em>Disable</em>' attribute.
45:          * @see #setDisable(boolean)
46:          * @see org.eclipse.emf.ecp.view.spi.rule.model.RulePackage#getEnableRule_Disable()
47:          * @model
48:          * @generated
49:          */
50:         boolean isDisable();
51:
52:         /**
53:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.rule.model.EnableRule#isDisable <em>Disable</em>}'
54:          * attribute.
55:          * <!-- begin-user-doc -->
56:          * <!-- end-user-doc -->
57:          *
58:          * @param value the new value of the '<em>Disable</em>' attribute.
59:          * @see #isDisable()
60:          * @generated
61:          */
62:         void setDisable(boolean value);
63:
64: } // EnableRule