Source code: medi/swing/FatherDataPanel.java
1 /*
2 * SessionDataPanel.java
3 *
4 * Created on 16 aprile 2002, 11.59
5 Medi - A media archiver. Archives media files for easy management.
6 Copyright (C) 2002 Antonio Petrelli
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
22 Contact me at: brenmcguire@users.sourceforge.net
23 */
24
25 package medi.swing;
26
27 import javatools.db.*;
28
29 /**
30 * Displays a list of data that are children of another data.
31 * Currently is under development.
32 * @author Antonio Petrelli
33 * @version 0.0.1
34 */
35 public class FatherDataPanel extends medi.swing.AbstractDataPanel {
36
37 /** Creates new SessionDataPanel */
38 public FatherDataPanel() {
39 }
40
41 /** Shows the items.
42 * @throws DbException If something goes wrong.
43 */
44 public void showItems() throws DbException {
45 }
46
47 /** Links a data item so that it will be "son" of another data item.
48 * @param dataID The data ID to link.
49 * @throws DbException If something goes wrong.
50 */
51 protected void linkNewData(Long dataID) throws DbException {
52 }
53 }