Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b20738a0b59e4bd4675af296bab0b66381b1a3ed (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
/**
 */
package org.eclipse.etrice.core.config;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Literal</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * <br>It is the super class of
 * <ul>
 * 	<li>{@link BooleanLiteral}</li>
 * 	<li>{@link NumberLiteral}</li>
 * 	<li>{@link StringLiteral}</li>
 * </ul>
 * that represents a primitive value.
 * 
 * <!-- end-model-doc -->
 *
 *
 * @see org.eclipse.etrice.core.config.ConfigPackage#getLiteral()
 * @model
 * @generated
 */
public interface Literal extends EObject
{
} // Literal

Back to the top