本文整理匯總了Java中com.intellij.util.ui.UIUtil.ComponentStyle方法的典型用法代碼示例。如果您正苦於以下問題:Java UIUtil.ComponentStyle方法的具體用法?Java UIUtil.ComponentStyle怎麽用?Java UIUtil.ComponentStyle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.intellij.util.ui.UIUtil
的用法示例。
在下文中一共展示了UIUtil.ComponentStyle方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: JBLabel
import com.intellij.util.ui.UIUtil; //導入方法依賴的package包/類
public JBLabel(@NotNull UIUtil.ComponentStyle componentStyle) {
super();
setComponentStyle(componentStyle);
}
示例2: setComponentStyle
import com.intellij.util.ui.UIUtil; //導入方法依賴的package包/類
public void setComponentStyle(@NotNull UIUtil.ComponentStyle componentStyle) {
myComponentStyle = componentStyle;
UIUtil.applyStyle(componentStyle, this);
}
示例3: getComponentStyle
import com.intellij.util.ui.UIUtil; //導入方法依賴的package包/類
public UIUtil.ComponentStyle getComponentStyle() {
return myComponentStyle;
}
示例4: setComponentStyleDecorative
import com.intellij.util.ui.UIUtil; //導入方法依賴的package包/類
public JBLabelDecorator setComponentStyleDecorative(@NotNull UIUtil.ComponentStyle componentStyle) {
super.setComponentStyle(componentStyle);
return this;
}