synthformattedtextfieldui.java

来自「java1.6众多例子参考」· Java 代码 · 共 52 行

JAVA
52
字号
/* * @(#)SynthFormattedTextFieldUI.java	1.6 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package javax.swing.plaf.synth;import java.awt.*;import javax.swing.*;import javax.swing.plaf.ComponentUI;/** * Provides the look and feel implementation for * <code>JFormattedTextField</code>. * * @version 1.6, 11/17/05 */class SynthFormattedTextFieldUI extends SynthTextFieldUI {    /**     * Creates a UI for a JFormattedTextField.     *     * @param c the formatted text field     * @return the UI     */    public static ComponentUI createUI(JComponent c) {        return new SynthFormattedTextFieldUI();    }    /**     * Fetches the name used as a key to lookup properties through the     * UIManager.  This is used as a prefix to all the standard     * text properties.     *     * @return the name "FormattedTextField"     */    protected String getPropertyPrefix() {	return "FormattedTextField";    }    void paintBackground(SynthContext context, Graphics g, JComponent c) {        context.getPainter().paintFormattedTextFieldBackground(context, g, 0,                             0, c.getWidth(), c.getHeight());    }    public void paintBorder(SynthContext context, Graphics g, int x,                            int y, int w, int h) {        context.getPainter().paintFormattedTextFieldBorder(context, g, x, y,                                                           w, h);    }}

⌨️ 快捷键说明

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