Source code: javatools/swing/panel/SubPanelFiller.java
1 /*
2 * SubPanelFiller.java
3 *
4 * Created on 21 novembre 2002, 18.19
5 Javatools (modified version) - Some useful general classes.
6 Copyright (C) 2002-2003 Chris Bitmead (original) Antonio Petrelli (modified)
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 javatools.swing.panel;
26
27 /** It is an abstract class that will contain the instruction on how to fill
28 * subpanels.
29 * @author Antonio Petrelli
30 * @version 0.1.7
31 */
32 public abstract class SubPanelFiller {
33
34 /** Creates a new instance of SubPanelFiller
35 */
36 public SubPanelFiller() {
37 panel = null;
38 }
39
40 /** Creates a new instance of SubPanelFiller
41 * @param pPanel The panel to be filled up.
42 */
43 public SubPanelFiller(javax.swing.JPanel pPanel) {
44 panel = pPanel;
45 }
46
47 /** Sets the panel to be filled up.
48 * @param pPanel The needed panel.
49 */
50 public void setPanel(javax.swing.JPanel pPanel) {
51 panel = pPanel;
52 }
53
54 /** Fills the panel.
55 * @param IDs The IDs of selected objects somewhere else in the application.
56 */
57 public abstract void fillPanel(Object[] IDs);
58
59 /** It is the panel to be filled up.
60 */
61 protected javax.swing.JPanel panel;
62 }