licencing and format applied (eclipse)
[jalview.git] / src / org / biojava / dasobert / eventmodel / ObjectListener.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 Nov 1, 2005
21  *
22  */
23 package org.biojava.dasobert.eventmodel;
24
25 /**
26  * an interface for the listeners of new PDB code requested / new Uniprot code
27  * requested
28  * 
29  * @author Andreas Prlic
30  * 
31  */
32 public interface ObjectListener
33 {
34
35   /**
36    * a new object has been requested
37    * 
38    * @param accessionCode
39    */
40   public void newObjectRequested(String accessionCode);
41
42   /**
43    * no object with that accessionCode has been found
44    * 
45    * @param accessionCode
46    */
47   public void noObjectFound(String accessionCode);
48
49   // public void exceptionOccured(Exception e);
50
51 }