X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=srcjar%2Ffr%2Forsay%2Flri%2Fvarna%2Finterfaces%2FInterfaceVARNARNAListener.java;fp=srcjar%2Ffr%2Forsay%2Flri%2Fvarna%2Finterfaces%2FInterfaceVARNARNAListener.java;h=0000000000000000000000000000000000000000;hb=4f77328104498504339216829abf5ea87e2791ec;hp=aeeaa5be30c39e4d2bf4fb4c7ffc85387dfa7a3c;hpb=2b8c0785318a3528e1876e8e2dd48b7d831eae69;p=jalview.git diff --git a/srcjar/fr/orsay/lri/varna/interfaces/InterfaceVARNARNAListener.java b/srcjar/fr/orsay/lri/varna/interfaces/InterfaceVARNARNAListener.java deleted file mode 100644 index aeeaa5b..0000000 --- a/srcjar/fr/orsay/lri/varna/interfaces/InterfaceVARNARNAListener.java +++ /dev/null @@ -1,32 +0,0 @@ -package fr.orsay.lri.varna.interfaces; - -import java.awt.geom.Point2D; -import java.util.ArrayList; -import java.util.Hashtable; -import java.util.Set; - -import fr.orsay.lri.varna.models.rna.ModeleBP; - -public interface InterfaceVARNARNAListener { - /** - * Reacts to changes being made at the sequence level. - * @param index The sequence index where a change of base content is observed - * @param oldseq Previous base content - * @param newseq New base content - */ - public void onSequenceModified(int index, String oldseq, String newseq); - - /** - * Reacts to modification of the structure (Base-pair addition/removal). - * @param current Current list of base-pairs (can be also accessed within the current RNA object). - * @param addedBasePairs Newly created base-pairs - * @param removedBasePairs Newly removed base-pairs - */ - public void onStructureModified(Set current, Set addedBasePairs, Set removedBasePairs); - - /** - * Reacts to displacement of - * @param previousPositions - */ - public void onRNALayoutChanged(Hashtable previousPositions); -}