Draw JGoLink with JGoPen

Hi;
Is JGo possible to draw link with JPen ? For example, in the JGoBasicNode, you can:
pen = new JGoPen(style,2,newColor);
this.setPen(pen);
You can draw border with following option:

  • SOLID - a solid stroke
  • DASHED - a sequence of dashes
  • DOTTED - a sequence of dots
  • DASHDOT - a sequence alternating between dashes and dots
  • DASHDOTDOT - a sequence of dash-dot-dots
  • Now, I want to apply same function to link. I do not know if this is possible?

    Thanks
    Steven

    I found it is possible since com.nwoods.jgo.JGoStroke support JPen
    Steven