本文整理匯總了Java中com.intellij.openapi.application.ModalityStateListener類的典型用法代碼示例。如果您正苦於以下問題:Java ModalityStateListener類的具體用法?Java ModalityStateListener怎麽用?Java ModalityStateListener使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ModalityStateListener類屬於com.intellij.openapi.application包,在下文中一共展示了ModalityStateListener類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: initComponent
import com.intellij.openapi.application.ModalityStateListener; //導入依賴的package包/類
@Override
public void initComponent() {
ModalityStateListener myModalityStateListener = new ModalityStateListener() {
@Override
public void beforeModalityStateChanged(boolean entering) {
for (Editor editor : myEditors) {
((EditorImpl)editor).beforeModalityStateChanged();
}
}
};
LaterInvocator.addModalityStateListener(myModalityStateListener, ApplicationManager.getApplication());
}
示例2: initComponent
import com.intellij.openapi.application.ModalityStateListener; //導入依賴的package包/類
@Override
public void initComponent() {
ModalityStateListener myModalityStateListener = entering -> {
for (Editor editor : myEditors) {
((EditorImpl)editor).beforeModalityStateChanged();
}
};
LaterInvocator.addModalityStateListener(myModalityStateListener, ApplicationManager.getApplication());
}
示例3: addModalityStateListener
import com.intellij.openapi.application.ModalityStateListener; //導入依賴的package包/類
public static void addModalityStateListener(@NotNull ModalityStateListener listener, @NotNull Disposable parentDisposable) {
if (!ourModalityStateMulticaster.getListeners().contains(listener)) {
ourModalityStateMulticaster.addListener(listener, parentDisposable);
}
}
示例4: addModalityStateListener
import com.intellij.openapi.application.ModalityStateListener; //導入依賴的package包/類
public static void addModalityStateListener(@NotNull ModalityStateListener listener) {
ourModalityStateMulticaster.addListener(listener);
}
示例5: removeModalityStateListener
import com.intellij.openapi.application.ModalityStateListener; //導入依賴的package包/類
public static void removeModalityStateListener(@NotNull ModalityStateListener listener) {
ourModalityStateMulticaster.removeListener(listener);
}