synthstylefactory.java

来自「java jdk 1.4的源码」· Java 代码 · 共 35 行

JAVA
35
字号
/* * @(#)SynthStyleFactory.java	1.6 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.java.swing.plaf.gtk;import java.awt.*;import java.util.*;import javax.swing.plaf.*;import javax.swing.*;/** * Factory used for obtaining styles. * * @version 1.6, 01/23/03 * @author Scott Violet */class SynthStyleFactory {    public SynthStyleFactory() {    }    /**     * Returns the style for the specified Component.     *     * @param c Component asking for     * @param id Region identifier     * @param Style for region.     */    public SynthStyle getStyle(JComponent c, Region id) {        return null;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?