1 /*
2  * This file is part of libbluray
3  * Copyright (C) 2010  William Hahne
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library. If not, see
17  * <http://www.gnu.org/licenses/>.
18  */
19 package org.dvb.dsmcc;
20 
21 import java.io.IOException;
22 import java.io.Serializable;
23 import org.davic.net.Locator;
24 
25 public class DSMCCStream implements Serializable {
DSMCCStream(DSMCCObject aDSMCCObject)26     public DSMCCStream(DSMCCObject aDSMCCObject) throws NotLoadedException,
27             IllegalObjectTypeException {
28         org.videolan.Logger.unimplemented(DSMCCStream.class.getName(), "");
29         throw new Error("Not implemented");
30     }
31 
DSMCCStream(String path)32     public DSMCCStream(String path) throws IOException,
33             IllegalObjectTypeException {
34         org.videolan.Logger.unimplemented(DSMCCStream.class.getName(), "");
35         throw new Error("Not implemented");
36     }
37 
DSMCCStream(String path, String name)38     public DSMCCStream(String path, String name) throws IOException,
39             IllegalObjectTypeException {
40         org.videolan.Logger.unimplemented(DSMCCStream.class.getName(), "");
41         throw new Error("Not implemented");
42     }
43 
getDuration()44     public long getDuration() {
45         throw new Error("Not implemented");
46     }
47 
getNPT()48     public long getNPT() throws MPEGDeliveryException {
49         throw new Error("Not implemented");
50     }
51 
getStreamLocator()52     public Locator getStreamLocator() {
53         throw new Error("Not implemented");
54     }
55 
isMPEGProgram()56     public boolean isMPEGProgram() {
57         throw new Error("Not implemented");
58     }
59 
isAudio()60     public boolean isAudio() {
61         throw new Error("Not implemented");
62     }
63 
isVideo()64     public boolean isVideo() {
65         throw new Error("Not implemented");
66     }
67 
isData()68     public boolean isData() {
69         throw new Error("Not implemented");
70     }
71 
getNPTRate()72     public NPTRate getNPTRate() throws MPEGDeliveryException {
73         throw new Error("Not implemented");
74     }
75 
addNPTListener(NPTListener listener)76     public void addNPTListener(NPTListener listener) {
77         throw new Error("Not implemented");
78     }
79 
removeNPTListener(NPTListener listener)80     public void removeNPTListener(NPTListener listener) {
81         throw new Error("Not implemented");
82     }
83 
84     private static final long serialVersionUID = 1L;
85 }
86