示例#1
0
 public JBLabel(
     @NotNull String text,
     @NotNull UIUtil.ComponentStyle componentStyle,
     @NotNull UIUtil.FontColor fontColor) {
   super(text);
   setComponentStyle(componentStyle);
   setFontColor(fontColor);
 }
示例#2
0
 public JBLabel(@NotNull String text, @NotNull UIUtil.ComponentStyle componentStyle) {
   super(text);
   setComponentStyle(componentStyle);
 }
示例#3
0
 public JBLabel(@NotNull UIUtil.ComponentStyle componentStyle) {
   super();
   setComponentStyle(componentStyle);
 }