You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Matlab allows you to independently define the get access (visibility) and the set access of a property.
Using the example from the plantuml documentation, one could specify, e.g. public get access and protected set access for field1
and protected get access and private set access for field2
thus:
@startuml
class Dummy {
+#field1
#-field2
~method1()
+method2()
}
@enduml
The text was updated successfully, but these errors were encountered:
Matlab allows you to independently define the get access (visibility) and the set access of a property.
Using the example from the plantuml documentation, one could specify, e.g.
public get access and protected set access for
field1
and
protected get access and private set access for
field2
thus:
The text was updated successfully, but these errors were encountered: