Das client files
[jalview.git] / src / org / biojava / dasobert / eventmodel / StructureListener.java
1 /*
2  *                  BioJava development code
3  *
4  * This code may be freely distributed and modified under the
5  * terms of the GNU Lesser General Public Licence.  This should
6  * be distributed with the code.  If you do not have a copy,
7  * see:
8  *
9  *      http://www.gnu.org/copyleft/lesser.html
10  *
11  * Copyright for this code is held jointly by the individual
12  * authors.  These should be listed in @author doc comments.
13  *
14  * For more information on the BioJava project and its aims,
15  * or to join the biojava-l mailing list, visit the home page
16  * at:
17  *
18  *      http://www.biojava.org/
19  * 
20  * Created on Oct 31, 2005
21  *
22  */
23 package org.biojava.dasobert.eventmodel;
24
25 /** things that can happen to a structure
26  * 
27  * @author Andreas Prlic
28  *
29  */
30 public interface StructureListener
31 extends ObjectListener {
32
33   
34     /** this is thrown if a new structure has been obtained from a structre source
35      * 
36      * @param event
37      */
38     public void newStructure(StructureEvent event);
39     
40     /** this is thrown if the currently active chain is being changed
41      * 
42      * @param event
43      */
44     public void selectedChain(StructureEvent event);
45     
46     
47     
48 }