From: amwaterhouse Date: Thu, 15 Jun 2006 14:04:44 +0000 (+0000) Subject: Not needed X-Git-Tag: Release_2_1~339 X-Git-Url: http://source.jalview.org/gitweb/?p=jalview.git;a=commitdiff_plain;h=f18e9375af8cef81e37decb87c0ff4270f73d0eb Not needed --- diff --git a/lib/dasobert.jar b/lib/dasobert.jar deleted file mode 100755 index 3209193..0000000 Binary files a/lib/dasobert.jar and /dev/null differ diff --git a/lib/dasregistry.jar b/lib/dasregistry.jar deleted file mode 100755 index 3d9674d..0000000 Binary files a/lib/dasregistry.jar and /dev/null differ diff --git a/src/org/biojava/dasobert/eventmodel/AlignmentListener.java b/src/org/biojava/dasobert/eventmodel/AlignmentListener.java deleted file mode 100755 index ba80ba1..0000000 --- a/src/org/biojava/dasobert/eventmodel/AlignmentListener.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * BioJava development code - * - * This code may be freely distributed and modified under the - * terms of the GNU Lesser General Public Licence. This should - * be distributed with the code. If you do not have a copy, - * see: - * - * http://www.gnu.org/copyleft/lesser.html - * - * Copyright for this code is held jointly by the individual - * authors. These should be listed in @author doc comments. - * - * For more information on the BioJava project and its aims, - * or to join the biojava-l mailing list, visit the home page - * at: - * - * http://www.biojava.org/ - * - * Created on Nov 20, 2005 - * - */ -package org.biojava.dasobert.eventmodel; - -public interface AlignmentListener { - - public void newAlignment(AlignmentEvent e); - public void noAlignmentFound(AlignmentEvent e); - public void clearAlignment(); -} diff --git a/src/org/biojava/dasobert/eventmodel/StructureListener.java b/src/org/biojava/dasobert/eventmodel/StructureListener.java deleted file mode 100755 index 44fccac..0000000 --- a/src/org/biojava/dasobert/eventmodel/StructureListener.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * BioJava development code - * - * This code may be freely distributed and modified under the - * terms of the GNU Lesser General Public Licence. This should - * be distributed with the code. If you do not have a copy, - * see: - * - * http://www.gnu.org/copyleft/lesser.html - * - * Copyright for this code is held jointly by the individual - * authors. These should be listed in @author doc comments. - * - * For more information on the BioJava project and its aims, - * or to join the biojava-l mailing list, visit the home page - * at: - * - * http://www.biojava.org/ - * - * Created on Oct 31, 2005 - * - */ -package org.biojava.dasobert.eventmodel; - -/** things that can happen to a structure - * - * @author Andreas Prlic - * - */ -public interface StructureListener -extends ObjectListener { - - - /** this is thrown if a new structure has been obtained from a structre source - * - * @param event - */ - public void newStructure(StructureEvent event); - - /** this is thrown if the currently active chain is being changed - * - * @param event - */ - public void selectedChain(StructureEvent event); - - - -}