Skip to content

Package: ShowRule

ShowRule

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