![JAR search and dependency download from the Maven repository](/logo.png)
schema.setting_delegate.exsd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml Show documentation
Show all versions of plantuml Show documentation
PlantUML is a component that allows to quickly write :
* sequence diagram,
* use case diagram,
* class diagram,
* activity diagram,
* component diagram,
* state diagram
* object diagram
This extension point is used to define a factory for setting delegates whose type is identified by a URI. The global EMF setting delegate factory registry, <samp>EStructuralFeature.Internal.SettingDelegate.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 setting delegates that can be created by the factory.
The fully qualified name of a Java class implementing <samp>org.eclipse.emf.ecore.EStructuralFeature.Internal.SettingDelegate.Factory</samp>.
2.6.0
Following is an example of how a setting delegate factory can be registered:
<pre>
<extension point="org.eclipse.emf.ecore.setting_delegate" >
<factory uri="http://www.eclipse.org/emf/2002/Ecore/OCL" class="org.eclipse.ocl.ecore.delegate.OCLSettingDelegateFactory"/>
</extension>
</pre>
The value of the class attribute must represent a class that implements <samp>org.eclipse.emf.ecore.EStructuralFeature.Internal.SettingDelegate.Factory</samp> and has a no argument contructor.
<p>
A setting delegate factory can be also registered from the source code with the <samp>EStructuralFeature.Internal.SettingDelegate.Factory.Registry.INSTANCE</samp> as follows:
</p>
<pre>
EStructuralFeature.Internal.SettingDelegate.Factory.Registry.INSTANCE.put("http://www.eclipse.org/emf/2002/Ecore/OCL", new OCLSettingDelegateFactory());
</pre>
Copyright (c) 2009 Kenn Hussey 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