1 25 40 package org.jgrapht.graph; 41 42 import java.io.*; 43 44 45 52 class IntrusiveEdge 53 implements Cloneable , Serializable 54 { 55 56 58 private static final long serialVersionUID = 3258408452177932855L; 59 60 62 Object source; 63 64 Object target; 65 66 68 71 public Object clone() 72 { 73 try { 74 return super.clone(); 75 } catch (CloneNotSupportedException e) { 76 throw new InternalError (); 78 } 79 } 80 } 81 82 | Popular Tags |