Source code: com/cybertivity/powerjournal/framework/PanelView.java
1 /*
2 * Title: Similated Intelligence
3 * Copyright: Copyright (c) 2001 Cybertivity
4 * Company: <A HREF="http://www.cybertivity.com">Cybertivity</A>
5 * @author <A HREF="mailto:chris.arrowood@cybertivity.com">Chris Arrowood</A>
6 * @version $Id: PanelView.java,v 1.1.1.1 2001/11/24 03:51:34 arrowood Exp $
7 */
8 package com.cybertivity.powerjournal.framework;
9
10 import javax.swing.JPanel;
11
12 /**
13 * Description of the Class
14 *
15 * @author arrowood
16 * @created July 17, 2001
17 */
18 public abstract class PanelView extends View {
19 protected JPanel content = null;
20
21
22 /**
23 * Constructor for the PanelView object
24 */
25 public PanelView() {
26 content = new JPanel();
27 }
28
29
30 /**
31 * Gets the Content attribute of the PanelView object
32 *
33 * @return The Content value
34 */
35 public JPanel getContent() {
36 return content;
37 }
38 }