Is it correct to use a communication diagram to model communication between packages rather than communication between objects? I would like to model communication at a higher level, but I would not like to misuse the diagram.
As an example, I show you a use case modeled with both diagrams. In the sequence diagram all the objects appear, as it is realized in detail, while the communication one offers a higher level view. I would like to know if it is conceptually correct.

Can I use a communication diagram for a high-level view?
496 Views Asked by Luigi At
1
There are 1 best solutions below
Related Questions in PACKAGE
- r package development - own function not visible for opencpu
- Composer scripts
- Importing with package name breaking enum comparison in Python
- install a R package from directory
- Uninstall unused packages with pip
- Roxygen error "Skipping invalid path"
- Error return from the pooledBin function (R package binGroup) depending on the method of confidence interval calculation
- r package development imports not loaded
- Access database with new pacakage in Laravel 4.2
- Unity3D 5 packages conflict
- Code Gear RAD Studio Delphi 2007 can't find package error opening pas file
- how to install packages from pypi to anaconda?
- MELPA pointing to non-existent version of multi-term?
- How to disable automatic package installation / upgrade in Visual Studio?
- SSIS package execution succeeds but doesn't do its job
Related Questions in UML
- UML design for a nodeJS web application
- Laravel MVC application structure on UML class diagram
- Database tables for tennis court booking system
- Interfaces in UML component diagram
- Is this correct UML Sequence diagram?
- Easiest way to get Class UML from java(android) files or project w/o eclipse. Reverse engineer
- What kind of pattern design would apply?
- How to define composition(boss, subordinate relationship)
- Using Aggregation in Inheritance
- Tools for generate sequence diagram(UML) from PHP class(files)
- What underlying difference makes Node Instances appear different?
- Representing LinkedLists in UML diagrams?
- Hashmap in UML diagram?
- class diagram for changes without new class/method?
- Sorting a collection of numbers
Related Questions in INTERACTION
- Force specific interactions in Package 'earth' in R
- Python object interaction
- InteractionRequest Raise not showing up the Popup (Prism - Interactivity)
- Prism RequestNavigate not working in a Popup window
- Interactive Android Animation
- How do I interact with a grid using a 2D array (Proce55ing)
- How to create an interaction between charts in d3
- OpenLayers 3 How to register Feature Modified event as "featuremodified" in OpenLayer 2
- How can python wait for a batch SGE script finish execution?
- Identifying repeat interaction from two columns
- Get lsmeans from lm model with fix nested effects
- R: Force data.table to compute all interactions
- Triple click as events on React?
- Making methods that interact with instances of their structs
- VB .NET | App to App Interaction
Related Questions in SEQUENCE-DIAGRAM
- Is this correct UML Sequence diagram?
- when can i draw solid life time at sequence diagram
- Sequence Diagram - Friendship request FCM
- Draw a sequence diagram
- Perfom an action by the same actor in an UML sequence diagram
- Class diagram to sequence diagram
- How to represent mutiple calls in Seq diagram
- DocumentListener in seq diagram
- How to visualize a missing response in an uml sequence diagram?
- How to generate a certain type of diagram from another type in EA?
- How to draw calls from constructors in UML sequence diagrams?
- Sequence diagram for GWT RPC mechanism
- Sequence diagram frames
- Difference between service-level and system-level Sequence Diagrams?
- Representing Sequence Diagram for an ERP system
Related Questions in COMMUNICATION-DIAGRAM
- how represent include/extends for communication diagram in UML
- Interface depictions in communication diagram or System sequence diagram?
- Sequence Diagram to Communication Diagram
- Can I use a communication diagram for a high-level view?
- What is the difference between sequence diagram and communication diagram?
- Drawing collaboration diagram using piece of code in Java
- Sending conditional messages in a uml communication diagram
- How to signal object instantiation in a Collaboration/Communication Diagram?
- How to express loops in Communication Diagrams?
- Enterprise Architect Communication Diagrams question
- How to change the order of "messages" in starUML in a communication diagram?
- Relations between objects involved in an UML communication diagram
- How to include methods from private classes in a communication diagram UML?
- How do you show multiple function calls to the same class?
- What is the difference between collaboration diagram and communication diagram in UML?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Is it really about UML package?
UML defines a package as a means to pack things together in a namespace:
UML provides means to use dependencies between packages, to merge names of packages, and things like that. But a package has by itself no behavior and therefore cannot communicate.
Could it be components?
Your diagram however suggests a classifier with some form of communication and behavior. The names of your "packages" seem to suggest something more complex than a simple class.
UML defines components:
UML components have 2 important characteristics:
In practice, it may happen that some component boundaries match package boundaries (by coincidence?), which might create some terminological confusion.
Communication diagrams
If what you call "packages" matches in reality UML components, especially with a view to the 2 characteristics, you may perfectly consider communication diagrams as you did.
Unrelated side remark: I know this is a common practice. But in principle interaction diagrams such as sequence diagrams and communication diagrams show "units of behavior of an enclosing classifier", i.e. something that is in principle inside of the system, whereas an actor is by definition outside.