javadoc
[jalview.git] / 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;