javadoc
authorjprocter <Jim Procter>
Fri, 19 Jan 2007 11:22:35 +0000 (11:22 +0000)
committerjprocter <Jim Procter>
Fri, 19 Jan 2007 11:22:35 +0000 (11:22 +0000)
src/jalview/datamodel/SequenceFeature.java

index fd240b9..094e060 100755 (executable)
@@ -44,6 +44,13 @@ public class SequenceFeature
 
     public SequenceFeature()
     {}
+    /**
+     * Constructs a duplicate feature. 
+     * Note: Uses clone on the otherDetails so only shallow copies are made 
+     * of additional properties and method will silently fail if unclonable 
+     * objects are found in the hash.
+     * @param cpy
+     */
     public SequenceFeature(SequenceFeature cpy) {
         if (cpy!=null) {
             begin = cpy.begin;