The IPreferenceStore API of Eclipse is based on OSGi's preferences service. Equinox implements several scope context for different preferences, such DefaultScope, InstanceScope and ConfigurationScope. The IPreferenceStore is the wrapper of instance scope for back-compatibility. It stored the data in …
Read More about Eclipse/OSGi preferenceEclipse platform register an OSGi service 'IProxyService' to manage network connection, which has capability to set proxy setting. There are three types of proxy working mode, Direct(no proxy), Manual(specified by user), Native(using OS's proxy setting, such as gnome-proxy, IE). There are three types of proxy supported …
Read More about The usage of Eclipse's Proxy APIadd below lines in ~/.gnomerc export XMODIFIERS="@im=fcitx" export GTK_IM_MODULE="xim"
Read More about How to set default input method for GNOMEcreate symbol link under lib/plugins of firefox to link jre/plugins/i386/ns**/libjavaplugin_oji.so
Read More about [HowTo]How to set up jre environment in firefoxSuch as, (gdb) handle SIGPIPE nostop noprint pass
Read More about [Debug][tip]How to ignore specified signal when debugging program via gdbClose Notes Double click c:\notes\notes.ini to open it. Add one new line "Display_font_adjustment=n" after the third line in notes.ini file. "n" is the number.It can be 1or 2 or 3....and the font will be larger with the number increasing. Launch note
Read More about [HowTo][tip]How to adjust the font size of Notes editorSet vm arguments 'osgi.framework.extensions' and 'osgi.frameworkClassPath' when vm starts. If those value are set, those jar or path would be added into the classloader when starting EclipseStarter. See org.eclipse.equinox.launcher.Main for more details in the source code of Eclipse 3.4. Best Regards Kane
Read More about [OSGi][Eclipse]Add custom jar or path into Equinox FrameworkThe answer is very simple, using the service 'org.eclipse.service.PackageAdmin'.
Read More about [OSGi]How to acquire the fragments of specified bundleEquinox uses the adaptor hooks to implement the class loader. See http://wiki.eclipse.org/Adaptor_Hooks for more detail BaseClassLoadingHook would search the native code on itself. If it find the file in that jar file, it would extract the native library into its storage folder. EclipseClassLoadingHook defines some …
Read More about [Eclipse]Equinox's classloader and its URL schema