File size: 800 Bytes
5070096 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
standard library package Allocations {
doc
/*
* This package defines the base types for allocations and related structural elements
* in the SysML language.
*/
private import Base::Anything;
private import Connections::*;
allocation def Allocation :> BinaryConnection {
doc
/*
* Allocation is the most general class of allocation, represented as a connection
* between the source of the allocation and the target. Allocation is the base type
* of all AllocationDefinitions.
*/
end source: Anything[0..*] :>> BinaryConnection::source;
end target: Anything[0..*] :>> BinaryConnection::target;
}
abstract allocation allocations: Allocation[0..*] nonunique :> binaryConnections {
doc
/*
* allocations is the base feature of all AllocationUsages.
*/
}
} |