1 package org.catacomb.numeric.difnet; 2 3 4 /** properties of a link in a NetStructure. 5 * 6 * 7 * 8 */ 9 10 11 public interface StructureLink { 12 13 void setNodeA(StructureNode sn); 14 15 StructureNode getNodeA(); 16 17 void setNodeB(StructureNode sn); 18 19 StructureNode getNodeB(); 20 21 }