KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > rero > dialogs > ExternalDialog


1 package rero.dialogs;
2
3 import java.awt.*;
4 import java.awt.event.*;
5
6 import javax.swing.*;
7 import javax.swing.table.*;
8 import javax.swing.event.*;
9
10 import java.util.*;
11 import rero.config.*;
12
13 import rero.dck.*;
14 import rero.dck.items.*;
15
16 public class ExternalDialog extends DMain
17 {
18    public String JavaDoc getTitle()
19    {
20       return "Applications";
21    }
22
23    public String JavaDoc getDescription()
24    {
25       return "Configure External Applications";
26    }
27
28    public void setupDialog()
29    {
30       addBlankSpace();
31       addBlankSpace();
32       addBlankSpace();
33
34       addFileInput("ui.openfiles", ClientDefaults.ui_openfiles, "Launch files with: ", 'O', 25);
35       addLabel("jIRCii uses the above command to send files/urls to the application registered to handle them.", 30);
36
37       addBlankSpace();
38    }
39 }
40
41
42
43
Popular Tags