Skip to main content
summaryrefslogtreecommitdiffstats
blob: d91e5c0642f4626ad2757c74b58b0b3cf86d6d69 (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
80
81
82
83
/**
 * <copyright>
 * </copyright>
 *
 * $Id: ContainsTagConstraint.java,v 1.2 2007/04/16 19:53:29 itrimble Exp $
 */
package org.eclipse.jst.jsf.validation.internal.constraints;

import org.eclipse.emf.ecore.EObject;

import org.eclipse.jst.jsf.common.metadata.traittypes.traittypes.SetGenerator;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Contains Tag Constraint</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link org.eclipse.jst.jsf.validation.internal.constraints.ContainsTagConstraint#getSetGenerator <em>Set Generator</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.validation.internal.constraints.ContainsTagConstraint#getSatisfiesSet <em>Satisfies Set</em>}</li>
 * </ul>
 * </p>
 *
 * @see org.eclipse.jst.jsf.validation.internal.constraints.ConstraintsPackage#getContainsTagConstraint()
 * @model
 * @generated
 */
public interface ContainsTagConstraint extends EObject {
    /**
     * Returns the value of the '<em><b>Set Generator</b></em>' reference.
     * <!-- begin-user-doc -->
     * <p>
     * If the meaning of the '<em>Set Generator</em>' reference isn't clear,
     * there really should be more of a description here...
     * </p>
     * <!-- end-user-doc -->
     * @return the value of the '<em>Set Generator</em>' reference.
     * @see #setSetGenerator(SetGenerator)
     * @see org.eclipse.jst.jsf.validation.internal.constraints.ConstraintsPackage#getContainsTagConstraint_SetGenerator()
     * @model extendedMetaData="kind='element' name='set-generator'"
     * @generated
     */
    SetGenerator getSetGenerator();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.validation.internal.constraints.ContainsTagConstraint#getSetGenerator <em>Set Generator</em>}' reference.
     * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
     * @param value the new value of the '<em>Set Generator</em>' reference.
     * @see #getSetGenerator()
     * @generated
     */
    void setSetGenerator(SetGenerator value);

    /**
     * Returns the value of the '<em><b>Satisfies Set</b></em>' reference.
     * <!-- begin-user-doc -->
     * <p>
     * If the meaning of the '<em>Satisfies Set</em>' reference isn't clear,
     * there really should be more of a description here...
     * </p>
     * <!-- end-user-doc -->
     * @return the value of the '<em>Satisfies Set</em>' reference.
     * @see #setSatisfiesSet(TagSet)
     * @see org.eclipse.jst.jsf.validation.internal.constraints.ConstraintsPackage#getContainsTagConstraint_SatisfiesSet()
     * @model extendedMetaData="kind='element' name='satisfies-set'"
     * @generated
     */
    TagSet getSatisfiesSet();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.validation.internal.constraints.ContainsTagConstraint#getSatisfiesSet <em>Satisfies Set</em>}' reference.
     * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
     * @param value the new value of the '<em>Satisfies Set</em>' reference.
     * @see #getSatisfiesSet()
     * @generated
     */
    void setSatisfiesSet(TagSet value);

} // ContainsTagConstraint

Back to the top