当前位置: 首页>>代码示例>>Java>>正文


Java NotificationType.ERROR属性代码示例

本文整理汇总了Java中com.intellij.notification.NotificationType.ERROR属性的典型用法代码示例。如果您正苦于以下问题:Java NotificationType.ERROR属性的具体用法?Java NotificationType.ERROR怎么用?Java NotificationType.ERROR使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.intellij.notification.NotificationType的用法示例。


在下文中一共展示了NotificationType.ERROR属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: UnableToSaveProjectNotification

public UnableToSaveProjectNotification(@NotNull final Project project, @NotNull VirtualFile[] readOnlyFiles) {
  super("Project Settings", "Could not save project", "Unable to save project files. Please ensure project files are writable and you have permissions to modify them." +
                                                       " <a href=\"\">Try to save project again</a>.", NotificationType.ERROR, new NotificationListener() {
    @Override
    public void hyperlinkUpdate(@NotNull Notification notification, @NotNull HyperlinkEvent event) {
      final UnableToSaveProjectNotification unableToSaveProjectNotification = (UnableToSaveProjectNotification)notification;
      final Project _project = unableToSaveProjectNotification.myProject;
      notification.expire();

      if (_project != null && !_project.isDisposed()) {
        _project.save();
      }
    }
  });

  myProject = project;
  myFiles = readOnlyFiles;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:18,代码来源:ProjectManagerImpl.java

示例2: getMaximumType

@Nullable
private static NotificationType getMaximumType(List<Notification> notifications) {
  NotificationType result = null;
  for (Notification notification : notifications) {
    if (NotificationType.ERROR == notification.getType()) {
      return NotificationType.ERROR;
    }

    if (NotificationType.WARNING == notification.getType()) {
      result = NotificationType.WARNING;
    }
    else if (result == null && NotificationType.INFORMATION == notification.getType()) {
      result = NotificationType.INFORMATION;
    }
  }

  return result;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:18,代码来源:IdeNotificationArea.java

示例3: showErrorNotification

private static void showErrorNotification(@NotNull Project project, String message, String responseString) {
  final JsonObject details = new JsonParser().parse(responseString).getAsJsonObject();
  final String detailString = details.get("detail").getAsString();
  final Notification notification =
    new Notification("Push.course", message, detailString, NotificationType.ERROR);
  notification.notify(project);
}
 
开发者ID:medvector,项目名称:educational-plugin,代码行数:7,代码来源:CCStepicConnector.java

示例4: getNotificationTypeForMessage

private NotificationType getNotificationTypeForMessage(LogMessage message)
{
    if (message.error()) {
        return NotificationType.ERROR;
    } else if (message.notice()) {
        return NotificationType.INFORMATION;
    }

    return NotificationType.WARNING;
}
 
开发者ID:ben-gibson,项目名称:GitLink,代码行数:10,代码来源:EventLogHandler.java

示例5: forTmcException

/**
 * Generates a human readable error message for a {@link TmcCoreException} and decides the
 * error's severity.
 */
static PresentableErrorMessage forTmcException(TmcCoreException exception) {
    String causeMessage;

    if (exception.getCause() != null) {
        causeMessage = exception.getCause().getMessage();
    } else {
        causeMessage = exception.getMessage();
    }

    String shownMessage;
    NotificationType type = NotificationType.WARNING;

    if (causeMessage.contains("Download failed")
            || causeMessage.contains("404")
            || causeMessage.contains("500")) {
        shownMessage = notifyAboutCourseServerAddressAndInternet();
    } else if (!TmcSettingsManager.get().userDataExists()) {
        shownMessage = notifyAboutUsernamePasswordAndServerAddress(causeMessage);
    } else if (causeMessage.contains("401")) {
        shownMessage = notifyAboutIncorrectUsernameOrPassword(causeMessage);
        type = NotificationType.ERROR;
    } else if (causeMessage.contains("Organization not selected")) {
        shownMessage = causeMessage;
    } else if (exception.getMessage().contains("Failed to fetch courses from the server")
            || exception.getMessage().contains("Failed to compress project")) {
        shownMessage = notifyAboutFailedSubmissionAttempt();
    } else if (TmcSettingsManager.get().getServerAddress().isEmpty()) {
        shownMessage = notifyAboutEmptyServerAddress(causeMessage);
    } else {
        shownMessage = causeMessage;
        type = NotificationType.ERROR;
    }
    System.out.println("error: " + shownMessage);

    return new PresentableErrorMessage(shownMessage, type);
}
 
开发者ID:testmycode,项目名称:tmc-intellij,代码行数:40,代码来源:PresentableErrorMessage.java

示例6: iconForNotificationType

private Icon iconForNotificationType(NotificationType type) {
    if (type == NotificationType.WARNING) {
        return Messages.getWarningIcon();
    } else if (type == NotificationType.ERROR) {
        return Messages.getErrorIcon();
    } else if (type == NotificationType.INFORMATION) {
        return Messages.getInformationIcon();
    } else {
        return Messages.getErrorIcon();
    }
}
 
开发者ID:testmycode,项目名称:tmc-intellij,代码行数:11,代码来源:ErrorMessageService.java

示例7: reportError

@Override
public synchronized void reportError(@NotNull String message) {
  super.reportError(message);
  final Notification notification = new Notification(
    AndroidDbManager.NOTIFICATION_GROUP_ID, "Data Source Synchronization Error",
    "Cannot " + (myUpload ? "upload" : "synchronize") + " '" + myDataSource.getName() + "': " + message,
    NotificationType.ERROR);
  Notifications.Bus.notify(notification, myProject);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:9,代码来源:AndroidDbErrorReporterImpl.java

示例8: notifyUser

private static void notifyUser(DataContext context, MavenProject mavenProject, MavenProject aggregator) {
  String aggregatorDescription = " (" + aggregator.getMavenId().getDisplayString() + ')';
  Notification notification = new Notification(MavenUtil.MAVEN_NOTIFICATION_GROUP, "Failed to remove project",
                                               "You can not remove " + mavenProject.getName() + " because it's " +
                                               "imported as a module of another project" +
                                               aggregatorDescription
                                               + ". You can use Ignore action. Only root project can be removed.",
                                               NotificationType.ERROR
  );

  notification.setImportant(true);
  notification.notify(MavenActionUtil.getProject(context));
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:13,代码来源:RemoveManagedFilesAction.java

示例9: error_notification_is_shown

@Then("^(success|warning|error) notification is shown '(.+)'$")
public void error_notification_is_shown(String notificationType, String title, String content) {
  NotificationType type = notificationType.equals("success") ? NotificationType.INFORMATION :
                          notificationType.equals("warning") ? NotificationType.WARNING :
                          notificationType.equals("error") ? NotificationType.ERROR : null;
  Notification actualNotification = lastNotification();
  assertNotNull("Notification should be shown", actualNotification);
  assertEquals("Notification type is incorrect in " + actualNotification, type, actualNotification.getType());
  assertEquals("Notification title is incorrect in" + actualNotification, title, actualNotification.getTitle());
  assertNotificationContent(content, actualNotification.getContent());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:11,代码来源:GeneralStepdefs.java

示例10: SvnAuthenticationNotifier

public SvnAuthenticationNotifier(final SvnVcs svnVcs) {
  super(svnVcs.getProject(), svnVcs.getDisplayName(), "Not Logged In to Subversion", NotificationType.ERROR);
  myVcs = svnVcs;
  myRootsToWorkingCopies = myVcs.getRootsToWorkingCopies();
  myCopiesPassiveResults = Collections.synchronizedMap(new HashMap<SVNURL, Boolean>());
  myVerificationInProgress = false;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:7,代码来源:SvnAuthenticationNotifier.java

示例11: error

public static void error(String title, String message) {
    Notification notification = new Notification(GreenCat.EVENT_LOG_GROUP_ID, title, message, NotificationType.ERROR);
    Notifications.Bus.notify(notification);
}
 
开发者ID:andreyfomenkov,项目名称:green-cat,代码行数:4,代码来源:EventLog.java

示例12: showNotification

private void showNotification(String text, boolean error) {
    Notification n = new Notification("com.github.shchurov.gradlestop", TITLE, text,
            error ? NotificationType.ERROR : NotificationType.INFORMATION);
    Notifications.Bus.notify(n);
}
 
开发者ID:shchurov,项目名称:GradleStop,代码行数:5,代码来源:GradleStopAction.java

示例13: HeaderFileParseErrorNotification

public HeaderFileParseErrorNotification(@NotNull Exception e) {
	super("Arma Plugin - Header Parse Error", "placeholder", "placeholder", NotificationType.ERROR);
	//using "placeholder" because if we don't, an exception gets thrown for having empty Strings for some reason
	//December 9, 2017
	this.e = e;
}
 
开发者ID:kayler-renslow,项目名称:arma-intellij-plugin,代码行数:6,代码来源:ArmaPluginUserData.java

示例14: showError

public static void showError(Project project, String errorMsg) {
  Notification notification =
      new Notification("ClangFormatIJ", "Formatting Failed", errorMsg, NotificationType.ERROR);
  Notifications.Bus.notify(notification, project);
}
 
开发者ID:mprobst,项目名称:ClangFormatIJ,代码行数:5,代码来源:ClangFormatAction.java

示例15: showErrorNotification

public static void showErrorNotification(String text) {
    Notification n = new Notification("com.github.shchurov.prefseditor", "SharedPreferencesEditor",
            text, NotificationType.ERROR);
    Notifications.Bus.notify(n);
}
 
开发者ID:shchurov,项目名称:SharedPreferences-Editor-Plugin,代码行数:5,代码来源:Utils.java


注:本文中的com.intellij.notification.NotificationType.ERROR属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。