Codota Logo
OptionalMessageDialog.getDialogSettings
Code IndexAdd Codota to your IDE (free)

How to use
getDialogSettings
method
in
org.eclipse.jdt.internal.ui.dialogs.OptionalMessageDialog

Best Java code snippets using org.eclipse.jdt.internal.ui.dialogs.OptionalMessageDialog.getDialogSettings (Showing top 6 results out of 315)

  • Common ways to obtain OptionalMessageDialog
private void myMethod () {
OptionalMessageDialog o =
  • Codota IconComposite composite;Layout layout;composite.setLayout(layout)
  • Codota IconLink link;String string;link.setText(string)
  • Codota IconLink link;Object object;link.setLayoutData(object)
  • Smart code suggestions by Codota
}
origin: org.eclipse.jdt/org.eclipse.jdt.ui

/**
 * Sets whether the optional dialog is enabled and should be shown.
 */
public static void setDialogEnabled(String key, boolean isEnabled) {
  IDialogSettings settings= getDialogSettings();
  settings.put(key, !isEnabled);
}
origin: org.eclipse/org.eclipse.jdt.ui

/**
 * Answers whether the optional dialog is enabled and should be shown.
 */
public static boolean isDialogEnabled(String key) {
  IDialogSettings settings= getDialogSettings();
  return !settings.getBoolean(key);
}

origin: org.eclipse.jdt/org.eclipse.jdt.ui

/**
 * Answers whether the optional dialog is enabled and should be shown.
 */
public static boolean isDialogEnabled(String key) {
  IDialogSettings settings= getDialogSettings();
  return !settings.getBoolean(key);
}
origin: org.eclipse/org.eclipse.jdt.ui

/**
 * Sets whether the optional dialog is enabled and should be shown.
 */
public static void setDialogEnabled(String key, boolean isEnabled) {
  IDialogSettings settings= getDialogSettings();
  settings.put(key, !isEnabled);
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

/**
 * Answers whether the optional dialog is enabled and should be shown.
 */
public static boolean isDialogEnabled(String key) {
  IDialogSettings settings= getDialogSettings();
  return !settings.getBoolean(key);
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

/**
 * Sets whether the optional dialog is enabled and should be shown.
 */
public static void setDialogEnabled(String key, boolean isEnabled) {
  IDialogSettings settings= getDialogSettings();
  settings.put(key, !isEnabled);
}
org.eclipse.jdt.internal.ui.dialogsOptionalMessageDialoggetDialogSettings

Javadoc

Returns this dialog

Popular methods of OptionalMessageDialog

  • isDialogEnabled
    Answers whether the optional dialog is enabled and should be shown.
  • <init>
  • applyDialogFont
  • clearAllRememberedStates
    Clears all remembered information about hidden dialogs
  • close
  • convertHorizontalDLUsToPixels
  • convertVerticalDLUsToPixels
  • createContents
  • createCustomArea
  • open
    Opens the dialog but only if the user hasn't chosen to hide it.
  • setDialogEnabled
    Sets whether the optional dialog is enabled and should be shown.
  • getButtonLabels
  • setDialogEnabled,
  • getButtonLabels,
  • getReturnCode

Popular in Java

  • Reading from database using SQL prepared statement
  • getResourceAsStream (ClassLoader)
  • onCreateOptionsMenu (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Timer (java.util)
    A facility for threads to schedule tasks for future execution in a background thread. Tasks may be s
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now