Documentation SysML
- class Documentation
Implementation of
Documentationdefined in the KerML specification.Specification:
Documentationis aCommentthat specifically documents adocumented_element, which must be itsowner.For language description, see section 7.2.4.2 of the KerML specification. For more details on the model, see section 8.3.2.3.5 of the KerML specification.
Inheritance:
Members defined in
Documentation(2 members)RAll subtypes of
Documentationaccording to the specification.RSysMLImplementation of
documented_elementdefined in the KerML specification.Members inherited from
Comment(2 members)Members inherited from
AnnotatingElement(5 members)RContainer for owned annotations.
RSysMLImplementation of
annotated_elementdefined in the KerML specification.RSysMLImplementation of
annotationdefined in the KerML specification.RSysMLImplementation of
owned_annotating_relationshipdefined in the KerML specification.RSysMLImplementation of
owning_annotating_relationshipdefined in the KerML specification.Members inherited from
Element(25 members)RSysMLImplementation of
alias_idsdefined in the KerML specification.RThe owned
Commentsrelated byowned_relationships.RWSysMLImplementation of
declared_namedefined in the KerML specification.RWSysMLImplementation of
declared_short_namedefined in the KerML specification.RSysMLImplementation of
documentationdefined in the KerML specification.RWSysMLImplementation of
element_iddefined in the KerML specification.RSysMLImplementation of
is_implied_includeddefined in the KerML specification.RSysMLImplementation of
is_library_elementdefined in the KerML specification.RThe owned metadata related by
owned_relationships.RSysMLImplementation of
namedefined in the KerML specification.RSysMLImplementation of
owned_annotationdefined in the KerML specification.RSysMLImplementation of
owned_elementdefined in the KerML specification.RSysMLImplementation of
owned_relationshipdefined in the KerML specification.RSysMLImplementation of
ownerdefined in the KerML specification.RSysMLImplementation of
owning_membershipdefined in the KerML specification.RSysMLImplementation of
owning_namespacedefined in the KerML specification.RSysMLImplementation of
owning_relationshipdefined in the KerML specification.RReturn a unique description of the location of this
Elementin the containment structure rooted in a rootNamespace. In most cases the segments will be identical toQualifiedName.RSysMLImplementation of
qualified_namedefined in the KerML specification.RThe owner of this
Elementas the parent ofowning_membershiporowning_relationshipotherwise.RWThe state of semantic resolution for this
Element. Based on this, sema may skip elements to avoid duplicate work, e.g. when resolving elements in a group of related documents.RSysMLImplementation of
short_namedefined in the KerML specification.RSysMLImplementation of
textual_representationdefined in the KerML specification.Check if the qualified name of this
Elementmatches the provided segments of a qualified name.Members inherited from
AstNode(7 members)RThe source CST node of
selfif one exists.RThe
documentthat owns this node.RThe parent node of
self.Identity based hash of this node.
cast(self, *type: type[TNode]) -> TNode
Chainable equivalent to
isintance(self, type)Checked cast to
type.Attributes
- STD: tuple[type[syside.Documentation], ...] = Ellipsis
All subtypes of
Documentationaccording to the specification.This is needed because the implementation does not use multiple inheritance like the standard metamodel. However, all would-be inherited attributes are implemented explicitly on classes in
Documentation.Std.When working with standard metamodel types, use:
if isinstance(element, Documentation.STD): ...
For type hints, instead use
Documentation.Std:Note that
Documentation.Stdis only defined duringTYPE_CHECKING, depending on the Python version used eitherfrom __future__ import annotationsordef function(...) -> "Documentation.Std"may be required to ensure that annotations are resolved lazily without an actual object present.
- property documented_element: syside.Element | None
Implementation of
documented_elementdefined in the KerML specification.Specification:
The
Elementthat is documented by thisDocumentation.See section 8.3.2.3.5 of the KerML specification for more details.