📄 windowspreferencesfactory.java
字号:
/* * @(#)WindowsPreferencesFactory.java 1.6 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.util.prefs;/** * Implementation of <tt>PreferencesFactory</tt> to return * WindowsPreferences objects. * * @author Konstantin Kladko * @version 1.6, 01/23/03 * @see Preferences * @see WindowsPreferences * @since 1.4 */class WindowsPreferencesFactory implements PreferencesFactory { /** * Returns WindowsPreferences.userRoot */ public Preferences userRoot() { return WindowsPreferences.userRoot; } /** * Returns WindowsPreferences.systemRoot */ public Preferences systemRoot() { return WindowsPreferences.systemRoot; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -