Click or drag to resize

LGSPEdgeHead Class

Special head edge of the lists containing all the edges of one type
Inheritance Hierarchy
SystemObject
  de.unika.ipd.grGen.lgspLGSPEdge
    de.unika.ipd.grGen.lgspLGSPEdgeHead

Namespace: de.unika.ipd.grGen.lgsp
Assembly: lgspBackend (in lgspBackend.dll) Version: GrGen.NET 7.1
Syntax
C#
public class LGSPEdgeHead : LGSPEdge

The LGSPEdgeHead type exposes the following members.

Constructors
 NameDescription
Public methodLGSPEdgeHeadInitializes a new instance of the LGSPEdgeHead class
Top
Properties
 NameDescription
Public propertyItem Indexer that gives access to the attributes of the graph element.
(Inherited from LGSPEdge)
Public propertyReplacedByEdge The edge which replaced this edge (Valid is false in this case) or null, if this edge has not been replaced or is still a valid member of a graph.
(Inherited from LGSPEdge)
Public propertyReplacedByElement The element which replaced this element (Valid is false in this case) or null, if this element has not been replaced or is still a valid member of a graph.
(Inherited from LGSPEdge)
Public propertySource The source node of the edge.
(Inherited from LGSPEdge)
Public propertyTarget The target node of the edge.
(Inherited from LGSPEdge)
Public propertyType The EdgeType of the edge.
(Inherited from LGSPEdge)
Public propertyValid This is true, if this edge is a valid graph element, i.e. it is part of a graph.
(Inherited from LGSPEdge)
Top
Methods
 NameDescription
Public methodApplyFunctionMethod
(Overrides LGSPEdgeApplyFunctionMethod(IActionExecutionEnvironment, IGraph, String, Object))
Public methodApplyProcedureMethod
(Overrides LGSPEdgeApplyProcedureMethod(IActionExecutionEnvironment, IGraph, String, Object))
Public methodClone
(Overrides LGSPEdgeClone(INode, INode))
Public methodCopy
(Overrides LGSPEdgeCopy(INode, INode, IGraph, IDictionaryObject, Object))
Public methodGetAttribute
(Overrides LGSPEdgeGetAttribute(String))
Public methodGetUniqueId Gets the unique id of the edge. Only available if unique ids for nodes and edges were declared in the model (or implicitely switched on by parallelization or the declaration of some index).
(Inherited from LGSPEdge)
Public methodInstanceOf Returns true, if the typed object is compatible to the given type.
(Inherited from LGSPEdge)
Public methodIsDeeplyEqual
(Overrides LGSPEdgeIsDeeplyEqual(IDeepEqualityComparer, IDictionaryObject, Object))
Public methodOpposite Retrieves the other incident node of this edge.
(Inherited from LGSPEdge)
Public methodRecycle
(Overrides LGSPEdgeRecycle)
Public methodResetAllAttributes
(Overrides LGSPEdgeResetAllAttributes)
Public methodSetAttribute
(Overrides LGSPEdgeSetAttribute(String, Object))
Public methodSetSourceAndTarget Sets source and target to the LGSPEdge object instantiated before with source and target being null.
(Inherited from LGSPEdge)
Public methodToString Returns the name of the type of this edge.
(Inherited from LGSPEdge)
Top
Fields
 NameDescription
Public fieldlgspFlags contains some booleans coded as bitvector
(Inherited from LGSPEdge)
Public fieldlgspInNext next edge in the incoming list of the target node containing all of its incoming edges
(Inherited from LGSPEdge)
Public fieldlgspInPrev previous edge in the incoming list of the target node containing all of its incoming edges
(Inherited from LGSPEdge)
Public fieldlgspOutNext next edge in the outgoing list of the source node containing all of its outgoing edges
(Inherited from LGSPEdge)
Public fieldlgspOutPrev previous edge in the outgoing list of the source node containing all of its outgoing edges
(Inherited from LGSPEdge)
Public fieldlgspSource source node of this edge
(Inherited from LGSPEdge)
Public fieldlgspTarget target node of this edge
(Inherited from LGSPEdge)
Public fieldlgspType The EdgeType of the edge.
(Inherited from LGSPEdge)
Public fieldlgspTypeNext Next edge in the list containing all the edges of one type. See comment for lgspTypePrev (this edge has been retyped if typeNext is not null but typePrev is null).
(Inherited from LGSPEdge)
Public fieldlgspTypePrev Previous edge in the list containing all the edges of one type. The edge is not part of a graph, iff typePrev is null. If typePrev is null and typeNext is not null, this edge has been retyped and typeNext points to the new edge. These special cases are neccessary to handle the following situations: "delete node + return edge", "hom + delete + return", "hom + retype + return", "hom + retype + delete", "hom + retype + delete + return".
(Inherited from LGSPEdge)
Public fielduniqueId contains a unique id if uniqueness was declared
(Inherited from LGSPEdge)
Top
See Also