Web Browser Favorites
Identifier:
org.eclipse.actf.model.ui.browserFavorites
Description:
This extension point is used to add initial Browser Favorites. Favorites information needs to be written in properties file format. Please specify the name of favorites as key and store the URL in value.
Eclipse.org\ home=http\://www.eclipse.org/
Configuration Markup:
<!ELEMENT extension (favorites)>
<!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 favorites EMPTY>
<!ATTLIST favorites
prefFile CDATA #REQUIRED
>
- prefFile - specify the resource of properties file that include browser favorites information.
Examples:
The following is an example of an extension definition:
<extension
point="org.eclipse.actf.model.ui.browserFavorites">
<favorites prefFile="favorites.properties"/>
</extension>
API Information:
The contributor will specify the properties file that include browser favorites information as a resource.
Supplied Implementation:
The example use case of this extension point is in org.eclipse.actf.examples.aibrowser plugin.
Copyright (c) 2008 IBM Corporation 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 http://www.eclipse.org/legal/epl-v10.html