Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse RAP Development Guide
Previous Page Home Next Page

Setting Stores

Identifier:
org.eclipse.rap.ui.settingstores

Since:
RAP 1.1

Description:
This extension point allows developers to contribute additional ISettingStore instances.

An ISettingStore provides persistent storage for settings (key value pairs of Strings), which are then available beyond the scope of a single session. An ISettingStoreFactory is responsible for creating a particular kind of ISettingStore.

Developers that want to implement their own setting store must provide a setting store factory and register it with the framework using this extension point.

Note that at runtime only one (out of all available) factories will be used to create new ISettingStore instances. Which factory is used can be controlled in two ways:

  • In a normal RAP deployment you can specify the factory to be used by placing the following property in the OSGi config.ini file: org.eclipse.rwt.settingStoreFactory=id where id identifies a particular factory element. Example:
    
    org.eclipse.rwt.settingStoreFactory=file
    
    
  • In an RWT-only deployment you can specify the factory to be used by placing the following snippet in the web.xml file:
    
    <init-param>
      <param-name>org.eclipse.rwt.settingStoreFactory</param-name>
      <param-value>org.eclipse.rwt.service.RWTFileSettingStoreFactory</param-value>   
    </init-param>
    
    
  • If nothing is specified, the class WorkbenchFileSettingStoreFactory will be used in a regular RAP deployment. In an RWT only deployment the class RWTFileSettingStoreFactory will be used instead.

Configuration Markup:

<!ELEMENT extension ( factory)*>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>

  • point - a fully qualified identifier of the target extension point
  • id - an optional identifier of the extension instance
  • name - an optional name of the extension instance

<!ELEMENT factory EMPTY>

<!ATTLIST factory

id    CDATA #REQUIRED

class CDATA #REQUIRED>

This element is used to define setting store factories. If more than one of these elements exist with the same id, only the last declared element (in order of reading the registry) is considered valid.


  • id - the unique identifier of this factory
  • class - a fully qualified name of the class implementing the org.eclipse.rwt.service.ISettingStoreFactory interface.

Examples:

  <extension
         point=
"org.eclipse.rap.ui.settingstores"
>
      <factory
            class=
"org.eclipse.ui.internal.preferences.WorkbenchFileSettingStoreFactory"

            id=
"file"
>
      </factory>
      <factory
            class=
"org.eclipse.rwt.service.RWTFileSettingStoreFactory"

            id=
"rwtfile"
>
      </factory>
   </extension>

Supplied Implementation:
RAP provides the following default implementations:
  • WorkbenchFileSettingStoreFactory, RWTFileSettingStoreFactory and FileSettingStore


Copyright (c) 2008 Innoopract Informationssysteme GmbH and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire