congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
SubmittedReportInfo.getLinkText
Code IndexAdd Tabnine to your IDE (free)

How to use
getLinkText
method
in
com.intellij.openapi.diagnostic.SubmittedReportInfo

Best Java code snippets using com.intellij.openapi.diagnostic.SubmittedReportInfo.getLinkText (Showing top 2 results out of 315)

origin: Camelcade/Perl5-IDEA

private static void popupResultInfo(final SubmittedReportInfo reportInfo, final Project project) {
 ApplicationManager.getApplication().invokeLater(() -> {
  StringBuilder text = new StringBuilder("<html>");
  final String url = reportInfo.getStatus() == SubmittedReportInfo.SubmissionStatus.FAILED || reportInfo.getLinkText() == null
            ? null
            : reportInfo.getURL();
origin: halirutan/Mathematica-IntelliJ-Plugin

 @Override
 public void consume(SubmittedReportInfo reportInfo) {
  myOriginalConsumer.consume(reportInfo);
  if (reportInfo.getStatus().equals(SubmissionStatus.FAILED)) {
   ReportMessages.GROUP.createNotification(
     ReportMessages.ERROR_REPORT,
     reportInfo.getLinkText(),
     NotificationType.ERROR,
     null).setImportant(false).notify(myProject);
  } else {
   ReportMessages.GROUP.createNotification(
     ReportMessages.ERROR_REPORT,
     reportInfo.getLinkText(),
     NotificationType.INFORMATION,
     NotificationListener.URL_OPENING_LISTENER).setImportant(false).notify(myProject);
  }
 }
}
com.intellij.openapi.diagnosticSubmittedReportInfogetLinkText

Popular methods of SubmittedReportInfo

  • <init>
  • getStatus
  • getURL

Popular in Java

  • Reading from database using SQL prepared statement
  • scheduleAtFixedRate (Timer)
  • getExternalFilesDir (Context)
  • compareTo (BigDecimal)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • IsNull (org.hamcrest.core)
    Is the value null?
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now