File Service Code Page Converters

Identifier:
org.eclipse.rse.services.codePageConverters

Since:
RSE 3.0

Description:
This extension point allows the default codepage conversion for files transfered via the file services to be provided by the extension point.

Configuration Markup:

<!ELEMENT extension (codePageConverter)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>


<!ELEMENT codePageConverter EMPTY>

<!ATTLIST codePageConverter

class CDATA #REQUIRED

>


Examples:
The following is an example of this extension point's usage:


   <extension point="org.eclipse.rse.services.codePageConverters">
      <codePageConverter
         id="org.eclipse.rse.services.files.defaultCodePageConverter"
         name="Default Code Page Converter"
         class="org.eclipse.rse.files.DefaultFileServiceCodePageConverter">
      </codePageConverter>
   </extension>

API Information:
Plug-ins that want to extend this extension point must implement org.eclipse.rse.services.files.IFileServiceCodePageConverter interface.

Supplied Implementation:
Users of this extension point must implement the interface org.eclipse.rse.services.files.IFileServiceCodePageConverter


Copyright (c) 2002, 2006, 2007 IBM Corporation. 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 Contributors: IBM Corporation - initial API and implementation