com.intellij.util.net
Class HTTPProxySettingsDialog

java.lang.Object
  extended by com.intellij.openapi.ui.DialogWrapper
      extended by com.intellij.util.net.HTTPProxySettingsDialog

public class HTTPProxySettingsDialog
extends DialogWrapper

Created by IntelliJ IDEA. User: stathik Date: Oct 21, 2003 Time: 4:35:44 PM To change this template use Options | File Templates.


Field Summary
 
Fields inherited from class com.intellij.openapi.ui.DialogWrapper
CANCEL_EXIT_CODE, DEFAULT_ACTION, NEXT_USER_EXIT_CODE, OK_EXIT_CODE
 
Constructor Summary
HTTPProxySettingsDialog()
           
 
Method Summary
protected  javax.swing.Action[] createActions()
          This is factory method which creates action of dialog.
protected  javax.swing.JComponent createCenterPanel()
          Factory method.
 
Methods inherited from class com.intellij.openapi.ui.DialogWrapper
addKeyListener, addMouseListener, addMouseListener, centerRelativeToParent, clickDefaultButton, close, createContentPane, createContentPaneBorder, createDefaultActions, createJButtonForAction, createLeftSideActions, createNorthPanel, createSouthPanel, createTitlePane, dispose, doCancelAction, doHelpAction, doOKAction, getCancelAction, getContentPane, getDimensionKey, getDimensionServiceKey, getExitCode, getHelpAction, getHorizontalStretch, getInitialLocation, getLocation, getOKAction, getOwner, getPreferredFocusedComponent, getPreferredSize, getRootPane, getSize, getTitle, getVerticalStretch, getWindow, init, isModalProgress, isOK, isOKActionEnabled, isProgressDialog, isResizable, isShowing, isVisible, pack, repaint, setButtonsAlignment, setButtonsMargin, setCancelButtonIcon, setCancelButtonText, setCrossClosesWindow, setHorizontalStretch, setLocation, setLocation, setModal, setOKActionEnabled, setOKButtonIcon, setOKButtonText, setResizable, setSize, setTitle, setUndecorated, setVerticalStretch, shouldCloseOnCross, show, toBack, toFront, validate
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HTTPProxySettingsDialog

public HTTPProxySettingsDialog()
Method Detail

createCenterPanel

protected javax.swing.JComponent createCenterPanel()
Description copied from class: DialogWrapper
Factory method. It creates panel with dialog options. Options panel is located at the center of the dialog's content pane. The implementation can return null value. In this case there will be no options panel.

Specified by:
createCenterPanel in class DialogWrapper

createActions

protected javax.swing.Action[] createActions()
Description copied from class: DialogWrapper
This is factory method which creates action of dialog. Each action is represented by JButton which is created by createJButtonForAction(Action) method. These buttons are places into panel which is created by createButtonsPanel method. Therefore you have anough ways to customise the dialog by ovverriding of createActions(), createButtonsPanel() and createJButtonForAction(Action) methods. By default the createActions() method returns "OK" and "Cancel" action.

Overrides:
createActions in class DialogWrapper
See Also:
DialogWrapper.createSouthPanel(), DialogWrapper.createJButtonForAction(javax.swing.Action)