Hiding / removing port handles

Is there an easy way to hide specific port handles that appear on a JgoArea? I want to only display the center top and center bottom handles (for use when adding links) and hide / remove the other 6. I am currently removing the port objects on every refresh, but I’m sure there is a better way.

I’m not sure, but I think you may be confusing resize handles and JGoPort objects.

A JGoPort is a connection point for a JGoLink.
A selection handle is something that allows you to interactively resize a selected JGoObject by dragging the handle. Selection handles are drawn on an object if JGoObject.isResizable is true and the object is selected.
So you may just want to call setResizable(false) on your nodes if I understand correctly. Or if I've misunderstood, please let me know exactly what node class you are using and I'll try again!