I have created an ERD (Entity-Relationship Diagram) using ArgoUML and I wish to create two operations within a class which both have a void
return type. However, I am only able to create one operation which returns a void
type.
For example:
I am able to set the return type of bookInitial()
to void
but whenever I try to set the return type of bookFollowUp()
to void
, the option is not available.
Having checked with other classes in the project, it would appear that each class only allows one object to have a void
return type - is this true for all classes?
Is there is there a way to assign the void
return type to more than one operation?
Thank you.