X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fsurfacing%2FAdjactantDirectedBinaryDomainCombination.java;h=1bcbc6073fc3c416a63f8fe5cdf2dfeebb83928d;hb=f47b5de663d2ca59a4d53587ea8d5cd20c594db2;hp=43bb0e3a8b5c000c145c190d6c3de569bc2e9b8b;hpb=48f7a89be9d34f1930a1f863e608235cc27184c5;p=jalview.git diff --git a/forester/java/src/org/forester/surfacing/AdjactantDirectedBinaryDomainCombination.java b/forester/java/src/org/forester/surfacing/AdjactantDirectedBinaryDomainCombination.java index 43bb0e3..1bcbc60 100644 --- a/forester/java/src/org/forester/surfacing/AdjactantDirectedBinaryDomainCombination.java +++ b/forester/java/src/org/forester/surfacing/AdjactantDirectedBinaryDomainCombination.java @@ -6,7 +6,7 @@ // Copyright (C) 2008-2009 Christian M. Zmasek // Copyright (C) 2008-2009 Burnham Institute for Medical Research // All rights reserved -// +// // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either @@ -16,29 +16,27 @@ // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. -// +// // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // 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; +import org.forester.protein.BinaryDomainCombination; + public class AdjactantDirectedBinaryDomainCombination extends BasicBinaryDomainCombination { - public AdjactantDirectedBinaryDomainCombination( final DomainId n_terminal, final DomainId c_terminal ) { + public AdjactantDirectedBinaryDomainCombination( final String n_terminal, final String c_terminal ) { super(); if ( ( n_terminal == null ) || ( c_terminal == null ) ) { throw new IllegalArgumentException( "attempt to create binary domain combination using null" ); } - _id_0 = n_terminal; - _id_1 = c_terminal; - } - - public AdjactantDirectedBinaryDomainCombination( final String n_terminal, final String c_terminal ) { - this( new DomainId( n_terminal ), new DomainId( c_terminal ) ); + _id0 = n_terminal; + _id1 = c_terminal; } public static AdjactantDirectedBinaryDomainCombination createInstance( final String ids ) {