memo_methodology_core
SysML API
Namespace hierarchy
memo → memo::methodology → memo::methodology::core
Packages
| Package |
memo_methodology_core |
Imports
| Visibility |
Target |
| private |
Metaobjects::SemanticMetadata |
| private |
ScalarValues::* |
| private |
memo_core_relationships::* |
| private |
memo_core_common::* |
| private |
memo_core_enumerations::* |
| private |
memo_core_consistency_rules::* |
Declarations
| Name |
SysML kind |
Description |
Specializes |
MethodologyLibrary |
part def |
Methodology library definition specializing MemoPart. |
MemoPart |
RulePolicy |
part def |
A rule's disposition under one methodology or project binding. targetRule and replacementRule are typed references to the rule's own constraint def, narrowed at the usage with ref :>> targetRule : <Rule>.… |
MemoPart |
MethodologyDefinition |
part def |
Methodology definition definition specializing MemoPart. |
MemoPart |
ResolvedMethodology |
part def |
Derived, never authored. The resolver projects this from a binding and its methodology chain. If it is serialized for review it is generated output that records its input hashes; it does not compete with the authored methodology and binding, and ontology source declares no ins… |
MemoPart |
ProjectMethodBinding |
part def |
Project method binding definition specializing MemoPart. |
MemoPart |
DhfDocumentBinding |
part def |
Dhf document binding definition specializing MemoPart. |
MemoPart |
Archetype |
part def |
Archetype definition specializing MemoPart. |
MemoPart |
ResolvesToMethodology |
connection def |
Moved out of memo_core_relationships: their ends are typed against types declared here, and core must not depend on a domain package. |
MemoRelationship |
MethodologyLibrary
part def MethodologyLibrary :> MemoPart
| Property |
Value |
| Description |
Methodology library definition specializing MemoPart. |
| Kind |
part def |
| Abstract |
No |
| Specializes |
MemoPart |
| Owning package |
memo_methodology_core |
RulePolicy
part def RulePolicy :> MemoPart
| Property |
Value |
| Description |
A rule's disposition under one methodology or project binding. targetRule and replacementRule are typed references to the rule's own constraint def, narrowed at the usage with ref :>> targetRule : <Rule>.… |
| Kind |
part def |
| Abstract |
No |
| Specializes |
MemoPart |
| Owning package |
memo_methodology_core |
MethodologyDefinition
part def MethodologyDefinition :> MemoPart
| Property |
Value |
| Description |
Methodology definition definition specializing MemoPart. |
| Kind |
part def |
| Abstract |
No |
| Specializes |
MemoPart |
| Owning package |
memo_methodology_core |
ResolvedMethodology
part def ResolvedMethodology :> MemoPart
| Property |
Value |
| Description |
Derived, never authored. The resolver projects this from a binding and its methodology chain. If it is serialized for review it is generated output that records its input hashes; it does not compete with the authored methodology and binding, and ontology source declares no ins… |
| Kind |
part def |
| Abstract |
No |
| Specializes |
MemoPart |
| Owning package |
memo_methodology_core |
ProjectMethodBinding
part def ProjectMethodBinding :> MemoPart
| Property |
Value |
| Description |
Project method binding definition specializing MemoPart. |
| Kind |
part def |
| Abstract |
No |
| Specializes |
MemoPart |
| Owning package |
memo_methodology_core |
DhfDocumentBinding
part def DhfDocumentBinding :> MemoPart
| Property |
Value |
| Description |
Dhf document binding definition specializing MemoPart. |
| Kind |
part def |
| Abstract |
No |
| Specializes |
MemoPart |
| Owning package |
memo_methodology_core |
Archetype
part def Archetype :> MemoPart
| Property |
Value |
| Description |
Archetype definition specializing MemoPart. |
| Kind |
part def |
| Abstract |
No |
| Specializes |
MemoPart |
| Owning package |
memo_methodology_core |
ResolvesToMethodology
connection def ResolvesToMethodology :> MemoRelationship
| Property |
Value |
| Description |
Moved out of memo_core_relationships: their ends are typed against types declared here, and core must not depend on a domain package. |
| Kind |
connection def |
| Abstract |
No |
| Specializes |
MemoRelationship |
| Owning package |
memo_methodology_core |
Source
methodology/core/memo_core.sysml
package memo_methodology_core {
private import Metaobjects::SemanticMetadata;
private import ScalarValues::*;
private import memo_core_relationships::*;
private import memo_core_common::*;
private import memo_core_enumerations::*;
private import memo_core_consistency_rules::*;
part def MethodologyLibrary :> MemoPart {
attribute version : String;
attribute domain : String;
attribute :>> description : String;
}
part def RulePolicy :> MemoPart {
ref targetRule : MemoConsistencyRule;
ref replacementRule : MemoConsistencyRule[0..1];
attribute disposition : RuleDispositionKind;
attribute severityOverride : RuleSeverityKind[0..1];
attribute rationaleText : String;
attribute authority : String;
attribute approvalReference : String[0..1];
attribute approvedBy : String[0..1];
attribute approvedOn : String[0..1];
}
part def MethodologyDefinition :> MemoPart {
attribute version : String;
attribute domain : String;
attribute :>> description : String;
ref baseMethodology : MethodologyDefinition[0..1];
attribute scopeMode : ScopeModeKind;
attribute includedLayer : String[0..*];
attribute includedModule : String[0..*];
attribute includedStandard : String[0..*];
attribute includedArtifactKind : String[0..*];
attribute includedViewpoint : String[0..*];
part rulePolicy : RulePolicy[0..*];
}
part def ResolvedMethodology :> MemoPart {
attribute version : String;
attribute includedLayer : String[0..*];
attribute includedModule : String[0..*];
}
part def ProjectMethodBinding :> MemoPart {
attribute projectName : String;
ref selectedMethodology : MethodologyDefinition;
attribute scopeMode : ScopeModeKind;
attribute includedModule : String[0..*];
attribute regulatoryRegime : RegulatoryRegimeKind[0..*];
part rulePolicy : RulePolicy[0..*];
}
part def DhfDocumentBinding :> MemoPart {
attribute documentTitle : String;
attribute groupLabel : String;
attribute templateId : String;
attribute viewKind : String;
attribute regulatoryReference : String;
attribute lifecycleStage : WorkflowStageKind;
attribute required : Boolean;
}
part def Archetype :> MemoPart {
attribute label : String;
attribute :>> description : String;
attribute category : String;
attribute includedLayer : String;
attribute includedStandard : String;
attribute templateDir : String;
}
connection def ResolvesToMethodology :> MemoRelationship {
end boundModelElement : MemoPart :>> source;
end resolvedMethodology : MethodologyDefinition :>> target;
}
abstract connection resolvesToMethodologyLinks : ResolvesToMethodology[*];
metadata def <resolvesToMethodology> ResolvesToMethodologyMetadata :> SemanticMetadata {
:> annotatedElement : SysML::ConnectionDefinition;
:> annotatedElement : SysML::ConnectionUsage;
:>> baseType = resolvesToMethodologyLinks meta SysML::Usage;
}
}