mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
7 lines
191 B
Java
7 lines
191 B
Java
interface SimpleDialogPresenter {
|
|
int BUT<caret>TON_POSITIVE = 1;
|
|
int BUTTON_NEGATIVE = 2;
|
|
int BUTTON_NEUTRAL = 3;
|
|
}
|
|
|
|
class SimpleDialogPresenterImpl implements SimpleDialogPresenter {} |