basicformattedtextfieldui.java

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

JAVA
41
字号
/* * @(#)BasicFormattedTextFieldUI.java	1.3 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package javax.swing.plaf.basic;import javax.swing.*;import javax.swing.plaf.ComponentUI;/** * Provides the look and feel implementation for * <code>JFormattedTextField</code>. * * @version 1.3 01/23/03 * @since 1.4 */public class BasicFormattedTextFieldUI extends BasicTextFieldUI {    /**     * Creates a UI for a JFormattedTextField.     *     * @param c the formatted text field     * @return the UI     */    public static ComponentUI createUI(JComponent c) {        return new BasicFormattedTextFieldUI();    }    /**     * 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";    }}

⌨️ 快捷键说明

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