summaryrefslogtreecommitdiffstats
path: root/rba.model.core/src/rba/core/Tag.java
blob: 77de3715a4b1ca85561effa18bbbf94d6469d43c (plain)
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
/**
 */
package rba.core;

import org.eclipse.emf.common.util.EList;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Tag</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * 
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link rba.core.Tag#getValues <em>Values</em>}</li>
 * </ul>
 *
 * @see rba.core.RBACorePackage#getTag()
 * @model
 * @generated
 */
public interface Tag extends NamedElement {
	/**
	 * Returns the value of the '<em><b>Values</b></em>' attribute list.
	 * The list contents are of type {@link java.lang.String}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * 
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Values</em>' attribute list.
	 * @see rba.core.RBACorePackage#getTag_Values()
	 * @model unique="false"
	 * @generated
	 */
	EList<String> getValues();

} // Tag