/eclipse-rse-3.4/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/widgets/SSLForm.java

# · Java · 118 lines · 49 code · 22 blank · 47 comment · 0 complexity · c0d5103020a93ba925a82fa22273619f MD5 · raw file

  1. /*******************************************************************************
  2. * Copyright (c) 2002, 2007 IBM Corporation and others.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Initial Contributors:
  9. * The following IBM employees contributed to the Remote System Explorer
  10. * component that contains this file: David McKnight, Kushal Munir,
  11. * Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
  12. * Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
  13. *
  14. * Contributors:
  15. * {Name} (company) - description of contribution.
  16. *******************************************************************************/
  17. package org.eclipse.rse.internal.ui.widgets;
  18. import org.eclipse.rse.internal.ui.SystemResources;
  19. import org.eclipse.rse.ui.SystemBaseForm;
  20. import org.eclipse.rse.ui.SystemWidgetHelpers;
  21. import org.eclipse.rse.ui.messages.ISystemMessageLine;
  22. import org.eclipse.swt.widgets.Button;
  23. import org.eclipse.swt.widgets.Composite;
  24. import org.eclipse.swt.widgets.Control;
  25. import org.eclipse.swt.widgets.Event;
  26. /**
  27. * This class provides a reusable widget for selecting whether or not
  28. * a communications connection should use SSL
  29. */
  30. public class SSLForm extends SystemBaseForm {
  31. private Button _sslCheckBox;
  32. private Button _nonsslCheckBox;
  33. /**
  34. * Constructor for SSLForm.
  35. * @param msgLine
  36. */
  37. public SSLForm(ISystemMessageLine msgLine) {
  38. super(null, msgLine); // null is the shell.
  39. }
  40. /**
  41. * Determines whether ssl is checked or not
  42. * @return whether ssl alert is checked
  43. */
  44. public boolean isSSLAlertChecked()
  45. {
  46. return _sslCheckBox.getSelection();
  47. }
  48. /**
  49. * Check/uncheck the ssl checkbox
  50. * @param flag
  51. */
  52. public void setSSLALertIsChecked(boolean flag)
  53. {
  54. _sslCheckBox.setSelection(flag);
  55. }
  56. /**
  57. * Determines whether non-ssl is checked or not
  58. * @return whether non ssl alert is checked
  59. */
  60. public boolean isNonSSLAlertChecked()
  61. {
  62. return _nonsslCheckBox.getSelection();
  63. }
  64. /**
  65. * Check/uncheck the ssl checkbox
  66. * @param flag
  67. */
  68. public void setNonSSLALertIsChecked(boolean flag)
  69. {
  70. _nonsslCheckBox.setSelection(flag);
  71. }
  72. /**
  73. * Enable/disable the ssl checkbox
  74. * @param flag
  75. */
  76. public void enableCheckBoxes(boolean flag)
  77. {
  78. _sslCheckBox.setEnabled(flag);
  79. _nonsslCheckBox.setEnabled(flag);
  80. }
  81. /**
  82. * @see org.eclipse.rse.ui.SystemBaseForm#createContents(Composite)
  83. */
  84. public Control createContents(Composite parent)
  85. {
  86. super.setShell(parent.getShell());
  87. _sslCheckBox = SystemWidgetHelpers.createCheckBox(parent, SystemResources.RESID_SUBSYSTEM_SSL_ALERT_LABEL, this);
  88. _sslCheckBox.setToolTipText(SystemResources.RESID_SUBSYSTEM_SSL_ALERT_TIP);
  89. _nonsslCheckBox = SystemWidgetHelpers.createCheckBox(parent, SystemResources.RESID_SUBSYSTEM_NONSSL_ALERT_LABEL, this);
  90. _nonsslCheckBox.setToolTipText(SystemResources.RESID_SUBSYSTEM_NONSSL_ALERT_TIP);
  91. return parent;
  92. }
  93. public void handleEvent(Event evt)
  94. {
  95. }
  96. }