Consider the following piece of code:
\begin{tikzpicture}
\umlsimpleclass[x=0,y=0]{Human}
\umlsimpleclass[x=10,y=0]{Pet}
\umlassoc[mult1=1, mult2=1..*, pos1=0.1, pos2=0.9]{Human}{Pet}
\end{tikzpicture}
I would like to add the word "owns" above the relation line between Human and Pet. I want the word to be in the middle of the line. The problem is that if I use any of "arg1", "arg2" or "arg" attributes of \umlassoc, it puts the word above the multiplicity (either at the right or at the left of the relation line, but not in the middle).
Does anyone know how I can do what I want ?
