KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > db > MediaInterface


1 package com.teamkonzept.webman.mainint.db;
2
3
4 import java.io.*;
5 import java.sql.SQLException JavaDoc;
6
7 public interface MediaInterface
8 {
9
10     public abstract String JavaDoc getMediaName()throws SQLException JavaDoc;
11
12     public abstract Integer JavaDoc getMediaID();
13
14     public abstract String JavaDoc getPath() throws SQLException JavaDoc, Throwable JavaDoc;
15     
16     /**
17      * to be called by TKTag.expandVariable().
18      * should write the media to disk and return the location.
19      */

20     public abstract String JavaDoc toString();
21 }
22     
23     
Popular Tags