Questions tagged [component]
The component tag has no summary.
72 questions
0 votes
1 answer
121 views
How to adjust the component diagram in this case for better readability?
I have created a Python code where a main algorithm uses three different modules (.py) after importing them. To illustrate and describe it I have create the following component diagram? Could it be ...
0 votes
4 answers
493 views
Resolving Dependency Cycles
Class and component dependency cycles Assume, we have component A with class CA, and component B with class CB, with a cyclic two-way dependency between classes CAand CB. Hence, we have a cyclic ...
0 votes
2 answers
133 views
While designing a software, what are the criterion used to partition that software into indivisual components? [closed]
Good software is always designed based on different modules before integration. I was wondering what rules/guidelines decide software partition into different, smaller modules during the design phase.
0 votes
2 answers
703 views
Can a socket be connected to many balls in a component diagram?
I have to draw a component diagram that depicts the architecture of my system with its subsystem decomposition and its dependencies. My system has a 3 tier architecture: The top layer just acts as a ...
-1 votes
1 answer
456 views
Calculate Cumulative Component Dependency and Average Component Dependency
Given is the following dependency graph of a system with two subsystems. Calculate the CD (Component Dependency) of all components and also calculate the CCD and the ACD. See CDD here https://...
-2 votes
3 answers
110 views
Visualising a sprint as a delta to a software component diagram? [closed]
Given a software component diagram, a sprint could be represented as a delta of that diagram. That delta would reflect how the sprint affect the components. Each component could for example have a ...
1 vote
1 answer
301 views
Server side rendering of third party updated html components
Say I am wanting to include a third party HTML component in my site... I know that I can simply include a <script> tag to pull in the component on the client's side; however because I do not ...
2 votes
1 answer
2k views
How to show relationships of the component containing the interface definition when using ball/socket notation in a UML Component Diagram?
I recently found out that I have probably been using ball/socket notation in a wrong way all the time. Now I am confused by the different ways of drawing interface relationships in two regards (I ...