1 /*
2 * $Id: FileLocation.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 class FileLocation implements StarTableWriterLocation {
24
25 /***
26 *
27 */
28 public FileLocation() {
29 super();
30 // TODO Auto-generated constructor stub
31 }
32
33 /* (non-Javadoc)
34 * @see org.astrogrid.applications.apps.tables.StarTableWriterLocation#getStream()
35 */
36 public OutputStream getStream() {
37 // TODO Auto-generated method stub
38 throw new UnsupportedOperationException(
39 "FileLocation.getStream() not implemented");
40 }
41
42 /* (non-Javadoc)
43 * @see org.astrogrid.applications.apps.tables.StarTableWriterLocation#getLocationReference()
44 */
45 public URI getLocationReference() {
46 // TODO Auto-generated method stub
47 throw new UnsupportedOperationException("FileLocation.getLocationReference() not implemented");
48 }
49
50 }