Codota Logo
org.eclipse.jdt.internal.ui.dialogs
Code IndexAdd Codota to your IDE (free)

How to use org.eclipse.jdt.internal.ui.dialogs

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: org.eclipse.jdt/org.eclipse.jdt.ui

public void setFullyQualifyDuplicates(boolean value, boolean refresh) {
  fLabelProvider.setFullyQualifyDuplicates(value);
  if (!refresh)
    return;
  stop(false, false);
  if (fTypeInfoFilter == null) {
    reset();
  } else {
    scheduleSearchJob(isSyncJobRunning() ? HISTORY : FULL);
  }
}

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

@Override
public void stop() {
  fReqestor.cancel();
  super.stop();
}
@Override
origin: org.eclipse.jdt/org.eclipse.jdt.ui

public void stop(boolean stopSyncJob, boolean dispose) {
  if (fSyncJob != null && stopSyncJob) {
    fSyncJob.stop();
    fSyncJob= null;
  }
  if (fSearchJob != null) {
    fSearchJob.stop();
    fSearchJob= null;
  }
}

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

public static void install(StyledText styledText) {
  if (isSubWordNavigationEnabled())
    new FocusHandler(new StyledTextNavigable(styledText));
}

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

public static void install(Combo combo) {
  if (isSubWordNavigationEnabled())
    new FocusHandler(new ComboNavigable(combo));
}

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

public static void install(Text text) {
  if (isSubWordNavigationEnabled())
    new FocusHandler(new TextNavigable(text));
}
origin: org.eclipse.jdt/org.eclipse.jdt.ui

private void configureStyleButtonSelected() {
  CustomBuilderConfigurationDialog dialog= new CustomBuilderConfigurationDialog(getShell());
  dialog.open();
  updateOKStatus();
}
origin: org.eclipse/org.eclipse.jdt.ui

public int open() {
  if (isDialogEnabled(OPTIONAL_ID)) {
    int res= super.open();
    if (res != Window.OK) {
      setDialogEnabled(OPTIONAL_ID, true); // don't save state on cancel
    }
    return res;
  }
  return Window.OK;
}

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

public String decorateText(String text, Object element) {
  if (!(element instanceof TypeNameMatch)) {
    return null;
  }
  if (fContainerInfo && isDuplicateElement(element)) {
    return fTypeInfoUtil.getFullyQualifiedText((TypeNameMatch) element);
  }
  return fTypeInfoUtil.getQualifiedText((TypeNameMatch) element);
}
origin: org.eclipse.jdt/org.eclipse.jdt.ui

@Override
public int open() {
  if (isDialogEnabled(OPTIONAL_ID))
    return super.open();
  return Window.OK;
}
origin: org.eclipse/org.eclipse.jdt.ui

/**
 * Sets the elements to be displayed in the dialog.
 * @param elements an array of pages holding arrays of elements
 */
public void setElements(Object[][] elements) {
  fNumberOfPages= elements.length;            
  fPages= new Page[fNumberOfPages];
  for (int i= 0; i != fNumberOfPages; i++)
    fPages[i]= new Page(elements[i]);
  
  initializeResult(fNumberOfPages);
}
origin: org.eclipse/org.eclipse.jdt.ui

  public void run() {
    fTypeInfoLabelProvider.setContainerInfo(isChecked());
  }
}
origin: org.eclipse/org.eclipse.jdt.ui

public void setFullyQualifyDuplicates(boolean value, boolean refresh) {
  fLabelProvider.setFullyQualifyDuplicates(value);
  if (!refresh)
    return;
  stop(false, false);
  if (fTypeInfoFilter == null) {
    reset();
  } else {
    scheduleSearchJob(isSyncJobRunning() ? HISTORY : FULL);
  }
}

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

public static void install(StyledText styledText) {
  if (isSubWordNavigationEnabled())
    new FocusHandler(new StyledTextNavigable(styledText));
}
origin: org.eclipse.jdt/org.eclipse.jdt.ui

public static void install(Combo combo) {
  if (isSubWordNavigationEnabled())
    new FocusHandler(new ComboNavigable(combo));
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

public static void install(Text text) {
  if (isSubWordNavigationEnabled())
    new FocusHandler(new TextNavigable(text));
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

@Override
public void stop() {
  fReqestor.cancel();
  super.stop();
}
@Override
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

public void stop(boolean stopSyncJob, boolean dispose) {
  if (fSyncJob != null && stopSyncJob) {
    fSyncJob.stop();
    fSyncJob= null;
  }
  if (fSearchJob != null) {
    fSearchJob.stop();
    fSearchJob= null;
  }
}

origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

@Override
public int open() {
  if (isDialogEnabled(OPTIONAL_ID))
    return super.open();
  return Window.OK;
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

public void setFullyQualifyDuplicates(boolean value, boolean refresh) {
  fLabelProvider.setFullyQualifyDuplicates(value);
  if (!refresh)
    return;
  stop(false, false);
  if (fTypeInfoFilter == null) {
    reset();
  } else {
    scheduleSearchJob(isSyncJobRunning() ? HISTORY : FULL);
  }
}

org.eclipse.jdt.internal.ui.dialogs

Most used classes

  • StatusInfo
  • TextFieldNavigationHandler
  • FilteredTypesSelectionDialog
    Shows a list of Java types to the user with a text entry field for a string pattern used to filter t
  • MultiElementListSelectionDialog
    A class to select elements out of a list of elements, organized on multiple pages.
  • OpenTypeSelectionDialog
    A type selection dialog used for opening types.
  • PackageSelectionDialog,
  • StatusUtil,
  • TableTextCellEditor,
  • TypeSelectionDialog2,
  • FilteredTypesSelectionDialog$ConsistencyRunnable,
  • FilteredTypesSelectionDialog$TypeFiltersPreferencesAction,
  • FilteredTypesSelectionDialog$TypeInfoUtil,
  • FilteredTypesSelectionDialog$TypeItemDetailsLabelProvider,
  • FilteredTypesSelectionDialog$TypeItemLabelProvider,
  • FilteredTypesSelectionDialog$TypeItemsComparator,
  • FilteredTypesSelectionDialog$TypeItemsFilter,
  • FilteredTypesSelectionDialog$TypeSearchPattern,
  • FilteredTypesSelectionDialog$TypeSearchRequestor,
  • FilteredTypesSelectionDialog$TypeSelectionHistory
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