Can I make a call to a class without a caller class using TikZ-uml sequence diagrams? It would be just an arrow pointing at a timeline of a class beginning a new method as added in this picture created withe the code below.
\begin{tikzpicture}
\begin{umlseqdiag}
\umlobject[class=A]{a}
\umlobject[class=B]{b}
\umlobject[class=C]{c}
\begin{umlcall}{a}{b}
\begin{umlcall}{b}{c}
\end{umlcall}
\end{umlcall}
\end{umlseqdiag}
\end{tikzpicture}


