Skip to content

Package: VRuleRepository

VRuleRepository

Coverage

1: /**
2: * Copyright (c) 2011-2016 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: * Eugen Neufeld - initial API and implementation
13: */
14: package org.eclipse.emfforms.spi.rulerepository.model;
15:
16: import org.eclipse.emf.common.util.EList;
17: import org.eclipse.emf.ecore.EObject;
18:
19: /**
20: * <!-- begin-user-doc --> A representation of the model object '
21: * <em><b>Rule Repository</b></em>'. <!-- end-user-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * </p>
26: * <ul>
27: * <li>{@link org.eclipse.emfforms.spi.rulerepository.model.VRuleRepository#getRuleEntries <em>Rule Entries</em>}</li>
28: * </ul>
29: *
30: * @see org.eclipse.emfforms.spi.rulerepository.model.VRulerepositoryPackage#getRuleRepository()
31: * @model
32: * @generated
33: */
34: public interface VRuleRepository extends EObject {
35:         /**
36:          * Returns the value of the '<em><b>Rule Entries</b></em>' containment
37:          * reference list. The list contents are of type
38:          * {@link org.eclipse.emfforms.spi.rulerepository.model.VRuleEntry}. <!--
39:          * begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>Rule Entries</em>' containment reference list
42:          * isn't clear, there really should be more of a description here...
43:          * </p>
44:          * <!-- end-user-doc -->
45:          *
46:          * @return the value of the '<em>Rule Entries</em>' containment reference
47:          * list.
48:          * @see org.eclipse.emfforms.spi.rulerepository.model.VRulerepositoryPackage#getRuleRepository_RuleEntries()
49:          * @model containment="true"
50:          * @generated
51:          */
52:         EList<VRuleEntry> getRuleEntries();
53:
54: } // VRuleRepository