mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-235533 annotate by @Checkbox
GitOrigin-RevId: 5ab5e2cd2c0c85b1e5da2c7a0cee0da99f52d64e
This commit is contained in:
committed by
intellij-monorepo-bot
parent
b34178e795
commit
1dcc102ef7
@@ -1,6 +1,7 @@
|
||||
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
package com.intellij.ui.components;
|
||||
|
||||
import com.intellij.openapi.util.NlsUI;
|
||||
import com.intellij.ui.AnchorableComponent;
|
||||
import com.intellij.util.ui.StartupUiUtil;
|
||||
import com.intellij.util.ui.UIUtil;
|
||||
@@ -23,11 +24,11 @@ public class JBCheckBox extends JCheckBox implements AnchorableComponent {
|
||||
this(null);
|
||||
}
|
||||
|
||||
public JBCheckBox(@Nullable @Nls String text) {
|
||||
public JBCheckBox(@Nullable @Nls @NlsUI.Checkbox String text) {
|
||||
this(text, false);
|
||||
}
|
||||
|
||||
public JBCheckBox(@Nullable @Nls String text, boolean selected) {
|
||||
public JBCheckBox(@Nullable @Nls @NlsUI.Checkbox String text, boolean selected) {
|
||||
super(text, null, selected);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user