![JAR search and dependency download from the Maven repository](/logo.png)
schema.conversion_delegate.exsd Maven / Gradle / Ivy
This extension point is used to define a factory for conversion delegates whose type is identified by a URI. The global EMF conversion delegate factory registry, <samp>EDataType.Internal.ConversionDelegate.Factory.Registry.INSTANCE</samp>, is used to record the registration.
A fully qualified identifier of the target extension point.
An optional identifier of the extension instance.
An optional name of the extension instance.
A URI identifying the type of conversion delegates that can be created by the factory.
The fully qualified name of a Java class implementing <samp>org.eclipse.emf.ecore.EDataType.Internal.ConversionDelegate.Factory</samp>.
2.8.0
Following is an example of how an conversion delegate factory can be registered:
<pre>
<extension point="org.eclipse.emf.ecore.conversion_delegate" >
<factory uri="http://www.eclipse.org/emf/2002/Ecore/Javascript" class="org.eclipse.emf.js4emf.ecore.internal.delegates.JavascriptDelegateFactory"/>
</extension>
</pre>
The value of the class attribute must represent a class that implements <samp>org.eclipse.emf.ecore.EDataType.Internal.ConversionDelegate.Factory</samp> and has a no argument contructor.
<p>
A conversion delegate factory can be also registered from the source code with the <samp>EDataType.Internal.ConversionDelegate.Factory.Registry.INSTANCE</samp> as follows:
</p>
<pre>
EDataType.Internal.ConversionDelegate.Factory.Registry.INSTANCE.put("http://www.eclipse.org/emf/2002/Ecore/Javascript", new JavascriptDelegateFactory());
</pre>
Copyright (c) 2011 Hallvard Traetteberg and others.<br>
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 <a
href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy