X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Forg%2Fbiojava%2Fdasobert%2Feventmodel%2FSequenceListener.java;fp=src%2Forg%2Fbiojava%2Fdasobert%2Feventmodel%2FSequenceListener.java;h=c71a6d91d5c173e5478c79f09f3fdc72327952a6;hb=7bc226b58110fa26d9dbd3f0c78095d06909ffc3;hp=58cbdb339b13fcfca5d6b5be772d39ce7390aef1;hpb=dd74fc4938723fe5ec48d4e5fdcfbe58ac42a48d;p=jalview.git diff --git a/src/org/biojava/dasobert/eventmodel/SequenceListener.java b/src/org/biojava/dasobert/eventmodel/SequenceListener.java index 58cbdb3..c71a6d9 100755 --- a/src/org/biojava/dasobert/eventmodel/SequenceListener.java +++ b/src/org/biojava/dasobert/eventmodel/SequenceListener.java @@ -16,7 +16,7 @@ * at: * * http://www.biojava.org/ - * + * * Created on Jun 10, 2005 * */ @@ -28,28 +28,29 @@ package org.biojava.dasobert.eventmodel; * @author Andreas Prlic * */ -public interface SequenceListener -extends ObjectListener{ - - /* select a certain sequence position */ - public void selectedSeqPosition(int position); - - /** select a certain range of a sequence - * @param start the start - * @param end the end of the range - * */ - public void selectedSeqRange(int start, int end); - - /** the current selecetion is locked and can not be changed - * @param flag true if selection should be locked - * */ - public void selectionLocked(boolean flag); - - public void newSequence(SequenceEvent e); - - /** clear what has been selected - * - * - */ - public void clearSelection(); +public interface SequenceListener + extends ObjectListener +{ + + /* select a certain sequence position */ + public void selectedSeqPosition(int position); + + /** select a certain range of a sequence + * @param start the start + * @param end the end of the range + * */ + public void selectedSeqRange(int start, int end); + + /** the current selecetion is locked and can not be changed + * @param flag true if selection should be locked + * */ + public void selectionLocked(boolean flag); + + public void newSequence(SequenceEvent e); + + /** clear what has been selected + * + * + */ + public void clearSelection(); }