Package org.eclipse.epsilon.eol.dom
Class MapLiteralExpression<K,V>
- java.lang.Object
-
- org.eclipse.epsilon.common.module.AbstractModuleElement
-
- org.eclipse.epsilon.eol.dom.AbstractExecutableModuleElement
-
- org.eclipse.epsilon.eol.dom.Expression
-
- org.eclipse.epsilon.eol.dom.LiteralExpression<Map<K,V>>
-
- org.eclipse.epsilon.eol.dom.MapLiteralExpression<K,V>
-
- All Implemented Interfaces:
ModuleElement
,IExecutableModuleElement
public class MapLiteralExpression<K,V> extends LiteralExpression<Map<K,V>>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Map.Entry<Expression,Expression>>
keyValueExpressionPairs
protected String
mapName
-
Fields inherited from class org.eclipse.epsilon.eol.dom.LiteralExpression
value
-
-
Constructor Summary
Constructors Constructor Description MapLiteralExpression()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(IEolVisitor visitor)
void
build(AST cst, IModule module)
static <K,V>
Map<K,V>createMap(String mapName)
Map<K,V>
execute(IEolContext context)
List<Map.Entry<Expression,Expression>>
getKeyValueExpressionPairs()
String
getMapName()
boolean
isTuple()
void
setMapName(String mapName)
-
Methods inherited from class org.eclipse.epsilon.eol.dom.LiteralExpression
getValue, setValue
-
Methods inherited from class org.eclipse.epsilon.common.module.AbstractModuleElement
equals, getChildren, getComments, getData, getDebugInfo, getFile, getModule, getParent, getRegion, getUri, hashCode, setModule, setParent, setRegion, setUri, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.epsilon.common.module.ModuleElement
getChildren, getComments, getData, getFile, getModule, getParent, getRegion, getUri, setModule, setParent, setRegion, setUri
-
-
-
-
Field Detail
-
keyValueExpressionPairs
protected List<Map.Entry<Expression,Expression>> keyValueExpressionPairs
-
mapName
protected String mapName
-
-
Method Detail
-
createMap
public static <K,V> Map<K,V> createMap(String mapName)
- Parameters:
mapName
-- Returns:
- Since:
- 2.1
-
build
public void build(AST cst, IModule module)
- Specified by:
build
in interfaceModuleElement
- Overrides:
build
in classAbstractModuleElement
-
execute
public Map<K,V> execute(IEolContext context) throws EolRuntimeException
- Specified by:
execute
in interfaceIExecutableModuleElement
- Overrides:
execute
in classLiteralExpression<Map<K,V>>
- Throws:
EolRuntimeException
-
isTuple
public boolean isTuple()
- Returns:
- Since:
- 2.2
-
getMapName
public String getMapName()
-
setMapName
public void setMapName(String mapName)
-
getKeyValueExpressionPairs
public List<Map.Entry<Expression,Expression>> getKeyValueExpressionPairs()
-
accept
public void accept(IEolVisitor visitor)
- Specified by:
accept
in classLiteralExpression<Map<K,V>>
-
-