Unnamed: 0
int64
0
305k
body
stringlengths
7
52.9k
name
stringlengths
1
185
247,300
void (FocusEvent e) { myHideAlarm.cancelAllRequests(); }
focusGained
247,301
void () { popup.cancel(); }
hide
247,302
void () { EDT.assertIsEdt(); for (HintManagerImpl.HintInfo info : myHintsStack) { if (!info.hint().vetoesHiding()) { info.hint().hide(); } } cleanup(); }
hideAllHints
247,303
void () { myHintsStack.clear(); updateLastEditor(null); }
cleanup
247,304
Point (@NotNull LightweightHint hint, @NotNull Editor editor, @HintManager.PositionFlags short constraint) { EDT.assertIsEdt(); LogicalPosition pos = editor.getCaretModel().getLogicalPosition(); final DataContext dataContext = ((EditorEx)editor).getDataContext(); final Rectangle dominantArea = PlatformDataKeys.DOMINANT...
getHintPosition
247,305
void (final @NotNull Editor editor, final @NotNull Point p, final int offset1, final int offset2, final @NotNull LightweightHint hint, int flags, final @NotNull QuestionAction action, @HintManager.PositionFlags short constraint) { ThreadingAssertions.assertEventDispatchThread(); hideQuestionHint(); RangeHighlighter hig...
showQuestionHint
247,306
void (@NotNull EventObject event) { hint.removeHintListener(this); if (highlighter != null) { highlighter.dispose(); } if (myQuestionHint == hint) { myQuestionAction = null; myQuestionHint = null; } }
hintHidden
247,307
void () { ThreadingAssertions.assertEventDispatchThread(); if (myQuestionHint != null) { myQuestionHint.hide(); myQuestionHint = null; myQuestionAction = null; } }
hideQuestionHint
247,308
void (final Editor editor) { if (myLastEditor != editor) { if (myLastEditor != null) { myLastEditor.removeEditorMouseListener(myEditorMouseListener); myLastEditor.getDocument().removeDocumentListener(myEditorDocumentListener); myLastEditor.getScrollingModel().removeVisibleAreaListener(myVisibleAreaListener); myLastEdit...
updateLastEditor
247,309
void (@NotNull AnAction action, @NotNull AnActionEvent event) { if (action instanceof HintManagerImpl.ActionToIgnore) return; AnAction escapeAction = ActionManagerEx.getInstanceEx().getAction(IdeActions.ACTION_EDITOR_ESCAPE); if (action == escapeAction) return; hideHints(HintManager.HIDE_BY_ANY_KEY, false, false); }
beforeActionPerformed
247,310
void (@NotNull IdeaPluginDescriptor pluginDescriptor, boolean isUpdate) { cleanup(); }
pluginUnloaded
247,311
boolean () { boolean isEDT = EDT.isCurrentThreadEdt(); HintManagerImpl.HintInfo[] arr = myHintsStack.toArray(new HintManagerImpl.HintInfo[0]); for (int i = arr.length - 1; i > -1; i--) { HintManagerImpl.HintInfo info = arr[i]; if (!info.hint().isVisible()) { if (isEDT) { myHintsStack.remove(info); info.hint().hide(); }...
isEscapeHandlerEnabled
247,312
boolean (int mask, boolean onlyOne, boolean editorChanged) { EDT.assertIsEdt(); boolean result = false; HintManagerImpl.HintInfo[] arr = myHintsStack.toArray(new HintManagerImpl.HintInfo[0]); for (int i = arr.length - 1; i > -1; i--) { HintManagerImpl.HintInfo info = arr[i]; if (!info.hint().isVisible() && !info.hint()...
hideHints
247,313
void (@NotNull Project project) { myQuestionAction = null; myQuestionHint = null; if (myLastEditor != null && project == myLastEditor.getProject()) { updateLastEditor(null); } }
onProjectClosed
247,314
int (QuestionAction action) { return action instanceof PriorityQuestionAction ? ((PriorityQuestionAction)action).getPriority() : 0; }
getPriority
247,315
boolean (QuestionAction action) { return ClientHintManager.getCurrentInstance().canShowQuestionAction(action); }
canShowQuestionAction
247,316
HintManagerImpl () { return (HintManagerImpl)HintManager.getInstance(); }
getInstanceImpl
247,317
void (boolean requestFocus) { ClientHintManager.getCurrentInstance().setRequestFocusForNextHint(requestFocus); }
setRequestFocusForNextHint
247,318
boolean () { return ClientHintManager.getCurrentInstance().performCurrentQuestionAction(); }
performCurrentQuestionAction
247,319
boolean (boolean willShowTooltip) { return ClientHintManager.getCurrentInstance().hasShownHintsThatWillHideByOtherHint(willShowTooltip); }
hasShownHintsThatWillHideByOtherHint
247,320
void (VisibleAreaEvent e, LightweightHint hint, boolean hideIfOutOfEditor) { if (hint.getComponent() instanceof ScrollAwareHint) { ((ScrollAwareHint)hint.getComponent()).editorScrolled(); } if (!hint.isVisible()) return; Editor editor = e.getEditor(); if (!editor.getComponent().isShowing() || editor.isOneLineMode()) re...
updateScrollableHintPosition
247,321
void (final LightweightHint hint, final Editor editor, final int lineNumber, final int horizontalOffset, @HideFlags final int flags, final int timeout, final boolean reviveOnEditorChange, final @NotNull HintHint hintInfo) { getClientManager(editor).showGutterHint(hint, editor, hintInfo, lineNumber, horizontalOffset, fl...
showGutterHint
247,322
void (final LightweightHint hint, final Editor editor, @PositionFlags final short constraint, @HideFlags final int flags, final int timeout, final boolean reviveOnEditorChange) { ThreadingAssertions.assertEventDispatchThread(); editor.getScrollingModel().scrollToCaret(ScrollType.MAKE_VISIBLE); editor.getScrollingModel(...
showEditorHint
247,323
void (final @NotNull LightweightHint hint, @NotNull Editor editor, @NotNull Point p, @HideFlags int flags, int timeout, boolean reviveOnEditorChange) { showEditorHint(hint, editor, p, flags, timeout, reviveOnEditorChange, HintManager.ABOVE); }
showEditorHint
247,324
void (final @NotNull LightweightHint hint, @NotNull Editor editor, @NotNull Point p, @HideFlags int flags, int timeout, boolean reviveOnEditorChange, @PositionFlags short position) { HintHint hintHint = createHintHint(editor, p, hint, position).setShowImmediately(true); showEditorHint(hint, editor, p, flags, timeout, r...
showEditorHint
247,325
void (final @NotNull LightweightHint hint, @NotNull Editor editor, @NotNull Point p, @HideFlags int flags, int timeout, boolean reviveOnEditorChange, @NotNull HintHint hintInfo) { getClientManager(editor).showEditorHint(hint, editor, hintInfo, p, flags, timeout, reviveOnEditorChange, null); }
showEditorHint
247,326
void (final @NotNull JComponent component, @NotNull RelativePoint p, int flags, int timeout) { showHint(component, p,flags,timeout,null); }
showHint
247,327
void (final @NotNull JComponent component, @NotNull RelativePoint p, int flags, int timeout, @Nullable Runnable onHintHidden) { ClientHintManager.getCurrentInstance().showHint(component, p, flags, timeout, onHintHidden); }
showHint
247,328
void (final LightweightHint hint, final Editor editor, Point p, HintHint hintInfo, boolean updateSize) { if (ApplicationManager.getApplication().isUnitTestMode()) return; JComponent externalComponent = getExternalComponent(editor); p = adjustHintPosition(p, updateSize, externalComponent, hint, hintInfo); if(hint.isShou...
doShowInGivenLocation
247,329
Point ( Point p, boolean updateSize, JComponent externalComponent, LightweightHint hint, HintHint hintInfo ) { Dimension size = updateSize ? hint.getComponent().getPreferredSize() : hint.getComponent().getSize(); if (LOG.isDebugEnabled()) { LOG.debug("START adjusting hint position " + p + " for a hint of size " + size ...
adjustHintPosition
247,330
void (final LightweightHint hint, final Editor editor, Point p) { doShowInGivenLocation(hint, editor, p, createHintHint(editor, p, hint, UNDER), false); }
updateLocation
247,331
void (final LightweightHint hint, final Editor editor, final Point p, @PositionFlags short constraint) { doShowInGivenLocation(hint, editor, p, createHintHint(editor, p, hint, constraint), true); }
adjustEditorHintPosition
247,332
void () { ClientHintManager.getCurrentInstance().hideAllHints(); }
hideAllHints
247,333
void () { ClientHintManager.getCurrentInstance().cleanup(); }
cleanup
247,334
Point (@NotNull LightweightHint hint, @NotNull Editor editor, @PositionFlags short constraint) { return ClientHintManager.getCurrentInstance().getHintPosition(hint, editor, constraint); }
getHintPosition
247,335
Point (final @NotNull LightweightHint hint, final @NotNull Editor editor, @PositionFlags short constraint, final @NotNull Rectangle lookupBounds, final LogicalPosition pos) { JComponent externalComponent = getExternalComponent(editor); IdeTooltip ideTooltip = hint.getCurrentIdeTooltip(); if (ideTooltip != null) { Point...
getHintPositionRelativeTo
247,336
Point (@NotNull LightweightHint hint, @NotNull Editor editor, @NotNull LogicalPosition pos, @PositionFlags short constraint) { VisualPosition visualPos = editor.logicalToVisualPosition(pos); return getHintPosition(hint, editor, visualPos, visualPos, constraint); }
getHintPosition
247,337
Point (@NotNull LightweightHint hint, @NotNull Editor editor, @NotNull VisualPosition pos, @PositionFlags short constraint) { return getHintPosition(hint, editor, pos, pos, constraint); }
getHintPosition
247,338
Point (@NotNull LightweightHint hint, @NotNull Editor editor, @NotNull VisualPosition pos1, @NotNull VisualPosition pos2, @PositionFlags short constraint) { return getHintPosition(hint, editor, pos1, pos2, constraint, Registry.is("editor.balloonHints")); }
getHintPosition
247,339
Point (@NotNull LightweightHint hint, @NotNull Editor editor, @NotNull VisualPosition pos1, @NotNull VisualPosition pos2, @PositionFlags short constraint, boolean showByBalloon) { if (ApplicationManager.getApplication().isHeadlessEnvironment()) return new Point(); Point p = _getHintPosition(hint, editor, pos1, pos2, co...
getHintPosition
247,340
JComponent (@NotNull Editor editor) { JComponent externalComponent = editor.getComponent(); JRootPane rootPane = externalComponent.getRootPane(); if (rootPane == null) return externalComponent; JLayeredPane layeredPane = rootPane.getLayeredPane(); return layeredPane != null ? layeredPane : rootPane; }
getExternalComponent
247,341
Point (@NotNull LightweightHint hint, @NotNull Editor editor, @NotNull VisualPosition pos1, @NotNull VisualPosition pos2, @PositionFlags short constraint, boolean showByBalloon) { Dimension hintSize = hint.getComponent().getPreferredSize(); Point location; JComponent externalComponent = getExternalComponent(editor); JC...
_getHintPosition
247,342
void (@NotNull Editor editor, @NotNull @HintText String text) { showErrorHint(editor, text, ABOVE); }
showErrorHint
247,343
void (@NotNull Editor editor, @NotNull @HintText String text, short position) { JComponent label = HintUtil.createErrorLabel(text); LightweightHint hint = new LightweightHint(label); Point p = getClientManager(editor).getHintPosition(hint, editor, position); int flags = HintManager.HIDE_BY_ANY_KEY | HintManager.HIDE_BY...
showErrorHint
247,344
void (@NotNull Editor editor, @NotNull String text, @PositionFlags short position) { showInformationHint(editor, text, null, position); }
showInformationHint
247,345
void (@NotNull Editor editor, @NotNull String text, @Nullable HyperlinkListener listener) { showInformationHint(editor, text, listener, ABOVE); }
showInformationHint
247,346
void (@NotNull Editor editor, @NotNull @HintText String text, @Nullable HyperlinkListener listener, @PositionFlags short position) { JComponent label = HintUtil.createInformationLabel(text, listener, null, null); showInformationHint(editor, label, position, null); }
showInformationHint
247,347
void (@NotNull Editor editor, @NotNull JComponent component) { showInformationHint(editor, component, null); }
showInformationHint
247,348
void (@NotNull Editor editor, @NotNull JComponent component, @Nullable Runnable onHintHidden) { // Set the accessible name so that screen readers announce the panel type (e.g. "Hint panel") // when the tooltip gets the focus. showInformationHint(editor, component, ABOVE, onHintHidden); }
showInformationHint
247,349
void (@NotNull Editor editor, @NotNull JComponent component, @PositionFlags short position, @Nullable Runnable onHintHidden) { if (ApplicationManager.getApplication().isUnitTestMode()) { return; } LightweightHint hint = new LightweightHint(component); Point p = getClientManager(editor).getHintPosition(hint, editor, pos...
showInformationHint
247,350
void (@NotNull Editor editor, @NotNull String text, short position) { showSuccessHint(editor, text, position, null); }
showSuccessHint
247,351
void (@NotNull Editor editor, @NotNull String text, @Nullable HyperlinkListener listener) { showSuccessHint(editor, text, ABOVE, listener); }
showSuccessHint
247,352
void (@NotNull Editor editor, @NotNull @HintText String text, @PositionFlags short position, @Nullable HyperlinkListener listener) { LightweightHint hint = new LightweightHint(HintUtil.createSuccessLabel(text, listener)); Point p = getClientManager(editor).getHintPosition(hint, editor, position); int flags = HintManage...
showSuccessHint
247,353
ClientHintManager (@NotNull Editor editor) { try (AccessToken ignored = ClientId.withClientId(ClientEditorManager.getClientId(editor))) { return ClientHintManager.getCurrentInstance(); } }
getClientManager
247,354
void (@NotNull Editor editor, @NotNull @HintText String hintText, int offset1, int offset2, short constraint, int flags, int timeout) { JComponent label = HintUtil.createErrorLabel(hintText); LightweightHint hint = new LightweightHint(label); final VisualPosition pos1 = editor.offsetToVisualPosition(offset1); final Vis...
showErrorHint
247,355
void (@NotNull Editor editor, @NotNull String hintText, int offset1, int offset2, @NotNull QuestionAction action) { JComponent label = HintUtil.createQuestionLabel(hintText); LightweightHint hint = new LightweightHint(label); showQuestionHint(editor, offset1, offset2, hint, action, ABOVE); }
showQuestionHint
247,356
void (final @NotNull Editor editor, final int offset1, final int offset2, final @NotNull LightweightHint hint, final @NotNull QuestionAction action, @PositionFlags short constraint) { final VisualPosition pos1 = editor.offsetToVisualPosition(offset1); final VisualPosition pos2 = editor.offsetToVisualPosition(offset2); ...
showQuestionHint
247,357
void (final @NotNull Editor editor, final @NotNull Point p, final int offset1, final int offset2, final @NotNull LightweightHint hint, int flags, final @NotNull QuestionAction action, @PositionFlags short constraint) { getClientManager(editor).showQuestionHint(editor, p, offset1, offset2, hint, flags, action, constrain...
showQuestionHint
247,358
void (final @NotNull Editor editor, final @NotNull Point p, final int offset1, final int offset2, final @NotNull LightweightHint hint, final @NotNull QuestionAction action, @PositionFlags short constraint) { if (ExperimentalUI.isNewUI() && hint.getComponent() instanceof HintUtil.HintLabel label) { JEditorPane pane = la...
showQuestionHint
247,359
HintHint (Editor editor, Point p, LightweightHint hint, @PositionFlags short constraint) { return createHintHint(editor, p, hint, constraint, false); }
createHintHint
247,360
HintHint (Editor editor, Point p, LightweightHint hint, @PositionFlags short constraint, boolean createInEditorComponent) { JRootPane rootPane = editor.getComponent().getRootPane(); if (rootPane == null) { return new HintHint(editor, p); } JLayeredPane lp = rootPane.getLayeredPane(); HintHint hintInfo = new HintHint(ed...
createHintHint
247,361
boolean (int mask, boolean onlyOne, boolean editorChanged) { return ClientHintManager.getCurrentInstance().hideHints(mask, onlyOne, editorChanged); }
hideHints
247,362
EditorHintListener () { return EditorHintListenerHolder.ourEditorHintPublisher; }
getPublisher
247,363
void (@NotNull FileEditorManagerEvent event) { hideHints(0, false, true); }
selectionChanged
247,364
void (@NotNull Project project) { project.getMessageBus().connect().subscribe(FileEditorManagerListener.FILE_EDITOR_MANAGER, myEditorManagerListener); }
projectOpened
247,365
void (@NotNull Project project) { ThreadingAssertions.assertEventDispatchThread(); // avoid leak through com.intellij.codeInsight.hint.TooltipController.myCurrentTooltip TooltipController.getInstance().cancelTooltips(); ApplicationManager.getApplication().invokeLater(() -> hideHints(0, false, false)); for (ClientHintMa...
projectClosed
247,366
Color () { if (ExperimentalUI.isNewUI()) { return HintHint.Status.Info.background; } return notNull(getGlobalOrDefaultColor(INFORMATION_COLOR_KEY), INFORMATION_COLOR_KEY.getDefaultColor()); }
getInformationColor
247,367
Color () { return notNull(getGlobalOrDefaultColor(QUESTION_COLOR_KEY), QUESTION_COLOR_KEY.getDefaultColor()); }
getQuestionColor
247,368
Color () { if (ExperimentalUI.isNewUI()) { return HintHint.Status.Warning.background; } return notNull(getGlobalOrDefaultColor(WARNING_COLOR_KEY), WARNING_COLOR_KEY.getDefaultColor()); }
getWarningColor
247,369
Color () { if (ExperimentalUI.isNewUI()) { return HintHint.Status.Error.background; } return notNull(getGlobalOrDefaultColor(ERROR_COLOR_KEY), ERROR_COLOR_KEY.getDefaultColor()); }
getErrorColor
247,370
Color () { return notNull(getGlobalOrDefaultColor(HINT_BORDER_COLOR_KEY), HINT_BORDER_COLOR_KEY.getDefaultColor()); }
getHintBorderColor
247,371
Color (EditorColorsScheme colorsScheme) { return notNull(colorsScheme.getColor(RECENT_LOCATIONS_SELECTION_KEY), RECENT_LOCATIONS_SELECTION_KEY.getDefaultColor()); }
getRecentLocationsSelectionColor
247,372
JComponent (@NotNull @HintText String text) { return createInformationLabel(text, null, null, null); }
createInformationLabel
247,373
JComponent (@NotNull @HintText String text, @Nullable HyperlinkListener hyperlinkListener, @Nullable MouseListener mouseListener, @Nullable Ref<? super Consumer<@Nls String>> updatedTextConsumer) { HintHint hintHint = getInformationHint(); HintLabel label = createLabel(text, null, hintHint.getTextBackground(), hintHint...
createInformationLabel
247,374
HintHint () { //noinspection UseJBColor return new HintHint() .setBorderColor(getHintBorderColor()) .setTextBg(getInformationColor()) .setTextFg(StartupUiUtil.isUnderDarcula() ? UIUtil.getLabelForeground() : Color.black) .setFont(getBoldFont()) .setAwtTooltip(true) .setStatus(HintHint.Status.Info); }
getInformationHint
247,375
HintHint () { return new HintHint().setAwtTooltip(true).applyStatus(HintHint.Status.Success); }
getSuccessHint
247,376
JComponent (@NotNull @HintText String text, @Nullable HyperlinkListener hyperlinkListener) { HintHint hintHint = getSuccessHint(); HintLabel label = createLabel(text, null, hintHint.getTextBackground(), hintHint); configureLabel(label, hyperlinkListener, null, null); return label; }
createSuccessLabel
247,377
JComponent (@NotNull @HintText String text) { return createSuccessLabel(text, null); }
createSuccessLabel
247,378
CompoundBorder () { return BorderFactory.createCompoundBorder( JBUI.Borders.customLine(getHintBorderColor(), 1), JBUI.Borders.empty(2) ); }
createHintBorder
247,379
JComponent (SimpleColoredText text) { return createInformationLabel(text, null); }
createInformationLabel
247,380
JComponent (@HintText String text) { Icon icon = AllIcons.General.ContextHelp; return createQuestionLabel(text, icon); }
createQuestionLabel
247,381
JComponent (@HintText String text, Icon icon) { Color bg = getQuestionColor(); HintHint hintHint = new HintHint().setTextBg(bg) .setBorderColor(getHintBorderColor()) .setTextFg(JBColor.foreground()) .setFont(getBoldFont()) .setAwtTooltip(true) .setStatus(HintHint.Status.Info); return createLabel(text, ExperimentalUI.is...
createQuestionLabel
247,382
SimpleColoredComponent () { SimpleColoredComponent component = new SimpleColoredComponent(); component.setTransparentIconBackground(true); return installInformationProperties(component); }
createInformationComponent
247,383
JComponent (@NotNull SimpleColoredText text, @Nullable Icon icon) { SimpleColoredComponent component = createInformationComponent(); component.setIcon(icon); text.appendToComponent(component); return new HintLabel(component); }
createInformationLabel
247,384
JComponent (@NotNull @HintText String text, @Nullable HyperlinkListener hyperlinkListener, @Nullable MouseListener mouseListener) { Color bg = getErrorColor(); HintHint hintHint = new HintHint() .setBorderColor(getHintBorderColor()) .setTextBg(bg) .setTextFg(JBColor.foreground()) .setFont(getBoldFont()) .setAwtTooltip(...
createErrorLabel
247,385
JComponent (@NotNull @HintText String text) { return createErrorLabel(text, null, null); }
createErrorLabel
247,386
JComponent (@NotNull @HintText String text, @Nullable HyperlinkListener hyperlinkListener, @Nullable MouseListener mouseListener) { Color bg = getWarningColor(); HintHint hintHint = new HintHint() .setBorderColor(getHintBorderColor()) .setTextBg(bg) .setTextFg(JBColor.foreground()) .setFont(getBoldFont()) .setAwtToolti...
createWarningLabel
247,387
JComponent (@NotNull @HintText String text) { return createWarningLabel(text, null, null); }
createWarningLabel
247,388
HintLabel (@HintText String text, @Nullable Icon icon, @NotNull Color color, @NotNull HintHint hintHint) { HintLabel label = new HintLabel(); label.setText(text, hintHint); label.setIcon(icon == null ? hintHint.getStatusIcon() : icon); if (!hintHint.isAwtTooltip()) { label.setBorder(createHintBorder()); label.setForegr...
createLabel
247,389
Font () { return StartupUiUtil.getLabelFont().deriveFont(Font.BOLD); }
getBoldFont
247,390
JLabel (@NlsContexts.PopupAdvertisement String bottomText, Border border, @JdkConstants.HorizontalAlignment int alignment) { JLabel label = new JLabel(); label.setText(bottomText); label.setHorizontalAlignment(alignment); label.setForeground(JBUI.CurrentTheme.Advertiser.foreground()); label.setBackground(JBUI.CurrentTh...
createAdComponent
247,391
void (@NotNull HintLabel label, @Nullable HyperlinkListener hyperlinkListener, @Nullable MouseListener mouseListener, @Nullable Ref<? super Consumer<@Nls String>> updatedTextConsumer) { if (hyperlinkListener != null) { label.myPane.addHyperlinkListener(hyperlinkListener); } if (mouseListener != null) { label.myPane.add...
configureLabel
247,392
boolean () { // Forward the focus to the tooltip contents so that screen readers announce // the tooltip contents right away. if (myPane != null) { return myPane.requestFocusInWindow(); } if (myColored != null) { return myColored.requestFocusInWindow(); } if (myIcon != null) { return myIcon.requestFocusInWindow(); } re...
requestFocusInWindow
247,393
void (@NotNull SimpleColoredComponent colored) { clearText(); hintHint = null; myColored = colored; add(myColored, BorderLayout.CENTER); setOpaque(true); setBackground(colored.getBackground()); revalidate(); repaint(); }
setText
247,394
void (@NlsContexts.Tooltip String s, HintHint hintHint) { clearText(); this.hintHint = hintHint; if (s != null) { myPane = IdeTooltipManager.initPane(s, hintHint, null); add(myPane, BorderLayout.CENTER); } setOpaque(true); setBackground(hintHint.getTextBackground()); revalidate(); repaint(); }
setText
247,395
void () { if (myPane != null) { remove(myPane); myPane = null; } if (myColored != null) { remove(myColored); myColored = null; } }
clearText
247,396
void (Icon icon) { if (myIcon != null) { remove(myIcon); } if (icon != null) { myIcon = new JLabel(icon, SwingConstants.CENTER); myIcon.setVerticalAlignment(SwingConstants.TOP); add(myIcon, BorderLayout.WEST); } revalidate(); repaint(); }
setIcon
247,397
String () { return "Hint: text='" + getText() + "'"; }
toString
247,398
String () { return myPane != null ? myPane.getText() : ""; }
getText
247,399
ClientHintManager () { return ApplicationManager.getApplication().getService(ClientHintManager.class); }
getCurrentInstance