inprogress
[jalview.git] / forester / java / src / org / forester / surfacing / AdjactantDirectedBinaryDomainCombination.java
index 6e6da35..9d9a441 100644 (file)
@@ -22,7 +22,7 @@
 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 //
 // Contact: phylosoft @ gmail . com
-// WWW: www.phylosoft.org/forester
+// WWW: https://sites.google.com/site/cmzmasek/home/software/forester
 
 package org.forester.surfacing;
 
@@ -36,8 +36,9 @@ public class AdjactantDirectedBinaryDomainCombination extends BasicBinaryDomainC
         if ( ( n_terminal == null ) || ( c_terminal == null ) ) {
             throw new IllegalArgumentException( "attempt to create binary domain combination using null" );
         }
-        _id_0 = n_terminal.getId();
-        _id_1 = c_terminal.getId();
+        //   _id_0 = n_terminal.getId();
+        //  _id_1 = c_terminal.getId();
+        _data = n_terminal.getId() + BinaryDomainCombination.SEPARATOR + c_terminal.getId();
     }
 
     public AdjactantDirectedBinaryDomainCombination( final String n_terminal, final String c_terminal ) {