schema.storageMergers.exsd Maven / Gradle / Ivy
The newest version!
This extension point allows a plug-in to register a storage merger
for specific content types. The storage merger is expected to perform a three-way merge
on three input storage and write the result to an output stream.
The extension point must implement the interface <samp>org.eclipse.team.core.mapping.IStorageMerger</samp>.
a fully qualified identifier of the target extension point
an optional identifier of the extension instance
an optional name of the extension instance
a unique identifier that can be used to reference the storage merger
a fully qualified name of a class that implements <samp>org.eclipse.team.core.mapping.IStorageMerger</samp>
a comma separated list of file extensions e.g. "java, properties"
The id of a content type defined using the <code>org.eclipse.core.contenttype.contentTypes</code> extension point.
3.2
The following is an example of a storage merger for property files (extension "properties"):
<p>
<pre>
<extension point = "org.eclipse.team.core.storageMergers">
<storageMerger
id="org.eclipse.team.internal.core.merge.PropertiesStorageMerger"
class="org.eclipse.team.internal.core.merge.PropertiesStorageMerger"
extensions="properties"
/>
</extension>
</pre>
</p>
The contributed class must implement <code>org.eclipse.team.core.mapping.IStorageMerger</code>
The Team UI plugin defines a storage merger for line oriented text files.
Copyright (c) 2005, 2008 IBM Corporation and others.<br>
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at <a href="https://www.eclipse.org/legal/epl-2.0">https://www.eclipse.org/legal/epl-v20.html</a>/
SPDX-License-Identifier: EPL-2.0