Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


PreferencesFactoryjava.util.prefs

Java 1.4

The
PreferencesFactory interface defines the factory
methods used by the static methods of the
Preferences class to obtain the root
Preferences nodes for user-specific and
system-wide preferences hierarchies. Application programmers never
need to use this interface.

An implementation of the preferences API for a specific back-end data
store must include an implementation of this interface that works
with that data store. Sun's implementation of Java
includes a default filesystem-based implementation, which you can
override by specifying the name of a
PreferencesFactory implementation as the value of
the
"java.util.prefs.PreferencesFactory"
system property.

public interface

PreferencesFactory {
// Public Instance Methods
Preferences

systemRoot ( );
Preferences

userRoot ( );
}



    / 1191