themesupporter.java
来自「本系统是用 java 语言实现的一个 Email客户端」· Java 代码 · 共 27 行
JAVA
27 行
package net.suberic.util.swing;import javax.swing.plaf.metal.MetalTheme;/** * A UI which can dynamically set its theme. */public interface ThemeSupporter { /** * Gets the Theme object from the ThemeManager which is appropriate * for this UI. */ public MetalTheme getTheme(ThemeManager mgr); /** * Gets the currently configured Theme. */ public MetalTheme getCurrentTheme(); /** * Sets the Theme that this component is currently using. */ public void setCurrentTheme(MetalTheme newTheme);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?