wind develop

- Total activity 13
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
-
Created How to get asyn result? (Do not block the ui thread)
AnsweredI need to do this get result Future<?> future = executor.submit(callable);return (String) future.get(); Previously, the results were obtained asynchronously without blocking the UI thread But now I... -
Created Action The actionperformed method is not triggered ?
AnsweredIn the update method of action. I will judge whether it is enabled. If I press the shortcut key in the disabled state and do not release it (it may have been enabled at this time) I will trigger it... -
Created How to run StartupActivity only once ?
AnsweredHow to run StartupActivity only once when multiple idea windows are started at the same time? My plug-in encountered the problem of repeated loading when multiple windows were started at the same t... -
Created How to display messages only in the event log without pop-up?
AnsweredNotificationGroup notificationGroup = new NotificationGroup("novel", NotificationDisplayType.NONE, true);Notification notification = notificationGroup.createNotification(content, NotificationType.I...