~ubuntu-branches/ubuntu/utopic/389-admin-console/utopic

« back to all changes in this revision

Viewing changes to src/com/netscape/management/admserv/config/PluginConfigPanel.java

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2011-10-12 11:05:09 UTC
  • Revision ID: package-import@ubuntu.com-20111012110509-ybd1jr5xeat2ug1i
Tags: upstream-1.1.8
ImportĀ upstreamĀ versionĀ 1.1.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** BEGIN COPYRIGHT BLOCK
 
2
 * Copyright (C) 2001 Sun Microsystems, Inc.  Used by permission.
 
3
 * Copyright (C) 2005 Red Hat, Inc.
 
4
 * All rights reserved.
 
5
 * 
 
6
 * This program is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU General Public License
 
8
 * as published by the Free Software Foundation; version 2
 
9
 * of the License.
 
10
 * 
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 * 
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
19
 * 
 
20
 * END COPYRIGHT BLOCK **/
 
21
package com.netscape.management.admserv.config;
 
22
 
 
23
import java.awt.*;
 
24
import java.util.*;
 
25
import javax.swing.*;
 
26
import javax.swing.border.*;
 
27
import com.netscape.management.nmclf.SuiLookAndFeel;
 
28
import com.netscape.management.client.util.*;
 
29
 
 
30
/**
 
31
  *
 
32
  * @version 0.1 11/28/97
 
33
  * @author miodrag@netscape.com
 
34
  */
 
35
 
 
36
public abstract class PluginConfigPanel extends JPanel implements IPluginConfigPanel {
 
37
 
 
38
    private String _titleText = "";
 
39
 
 
40
    public PluginConfigPanel() {
 
41
        this("");
 
42
    }
 
43
 
 
44
    public PluginConfigPanel(String title) {
 
45
        //setBorder(new EmptyBorder(0,5,0,5));
 
46
        _titleText = title;
 
47
    }
 
48
 
 
49
    public JPanel getPanel() {
 
50
        return this;
 
51
    }
 
52
 
 
53
    public String getTitleText() {
 
54
        return _titleText;
 
55
    }
 
56
 
 
57
    public void showHelp() {
 
58
        Debug.println("help not implemented");
 
59
    }
 
60
 
 
61
}