Class diagram / Package border thickness

0 votes
asked Jan 26, 2015 in To be sorted by anonymous
I would like to change the border width of a package / namespace like it is possible with classes.

Is there a skinparam?

If not - could you give me an hint where / how it is done with classes? (java source files)

I'm currently working on your xmi export so that it conforms to EnterpriseArchitect and Eclipse xmi formats. Is that of interest for you?

All the best

Andreas

1 Answer

0 votes
answered Jan 26, 2015 by plantuml (294,960 points)

Hello,

This is not possible with current version.
However, we've build a new beta that allows this: ( https://dl.dropboxusercontent.com/u/13064071/plantuml.jar )

@startuml
skinparam classBorderThickness<<stereo>> 5
skinparam packageBorderThickness<<stereo>> 1.5
skinparam packageBorderThickness 0.5
class A <<stereo>>
class B
package p1 {
class C
}
package p2 <<stereo>> {
class D
}


Very few tests have been done and we are not 100% sure that syntax and new keyword are ok.
So feedback welcome!

Thanks for your suggestion.

About XMI, this is really frozen on our side. If you have something better than what we did and that can be easily integrated, we might be interested. Please contact us by mail (plantuml@gmail.com)


 

...