Click or drag to resize

EmitHelperToString(IDeque, AttributeChangeType, Object, String, String, AttributeType, IGraph) Method

Returns a string representation of the given Deque after the given operation with the given parameters was applied

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public static void ToString(
	IDeque deque,
	AttributeChangeType changeType,
	Object newValue,
	out string type,
	out string content,
	AttributeType attrType,
	IGraph graph
)

Parameters

deque  IDeque
The base Deque of the operation
changeType  AttributeChangeType
The type of the change operation
newValue  Object
The new value to be inserted/added if changeType==PutElement on deque.
type  String
The type as string, e.g deque<int>
content  String
The content as string, e.g. ] 42, 43 [
attrType  AttributeType
The attribute type of the Deque
graph  IGraph
The graph with the model and the element names
See Also