View Javadoc

1   /*
2    * $Id: StarTableWriterLocation.java,v 1.2 2004/11/27 13:20:02 pah Exp $
3    * 
4    * Created on 11-Nov-2004 by Paul Harrison (pah@jb.man.ac.uk)
5    * Copyright 2004 AstroGrid. All rights reserved.
6    *
7    * This software is published under the terms of the AstroGrid 
8    * Software License version 1.2, a copy of which has been included 
9    * with this distribution in the LICENSE.txt file.  
10   *
11   */ 
12  
13  package org.astrogrid.applications.apps.tables;
14  
15  import java.io.OutputStream;
16  import java.net.URI;
17  
18  /***
19   * @author Paul Harrison (pah@jb.man.ac.uk) 11-Nov-2004
20   * @version $Name: HEAD $
21   * @since iteration6
22   */
23  public interface StarTableWriterLocation {
24     
25     public OutputStream getStream();
26     
27     public URI getLocationReference();
28  
29  }