Solved
How to get only edges belonging to a solid?
Currently using the below Java code I am getting many more edges compared to searching for edges in the GUI (ctrl+f, look for:edge)
Where are all the extra edges coming from?
Session currSession= pfcSession.GetCurrentSessionWithCompatibility (CreoCompatibility.C4Compatible);
Model currModel = currSession.GetCurrentModel();
Solid currSolid = (Solid)currModel;
ModelItems edgeItems = currSolid.ListItems(ModelItemType.ITEM_EDGE);
int edgeItemsNum = edgeItems.getarraysize();


