resources
extension point is used to register additional resources which are used in the client application. This can be for example a javascript library, additional images used by the client or other documents which are then available on the client. The resource can be located locally or loaded from an external location.
<!ELEMENT extension (resource+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT resource EMPTY>
<!ATTLIST resource
class CDATA #REQUIRED>
org.eclipse.rwt.resources.IResource
to define location, options and other aspects for this resource.<extension id="org.eclipse.rap.gmaps.gmap" point="org.eclipse.rap.ui.resources"> <resource class="org.eclipse.rap.gmaps.GMapResource"/> </extension>
Copyright (c) 2007 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 http://www.eclipse.org/legal/epl-v10.html