| <?xml version='1.0' encoding='UTF-8'?> | |
| <!-- Schema file written by PDE --> | |
| <schema targetNamespace="org.eclipse.emf.facet.widgets.celleditors" xmlns="http://www.w3.org/2001/XMLSchema"> | |
| <annotation> | |
| <appInfo> | |
| <meta.schema plugin="org.eclipse.emf.facet.widgets.celleditors" id="serialization" name="Serialization"/> | |
| </appInfo> | |
| <documentation> | |
| This extension point is used to specify an implementation for serializing specific types. | |
| </documentation> | |
| </annotation> | |
| <element name="extension"> | |
| <annotation> | |
| <appInfo> | |
| <meta.element /> | |
| </appInfo> | |
| </annotation> | |
| <complexType> | |
| <sequence> | |
| <element ref="serializer" minOccurs="1" maxOccurs="unbounded"/> | |
| </sequence> | |
| <attribute name="point" type="string" use="required"> | |
| <annotation> | |
| <documentation> | |
| </documentation> | |
| </annotation> | |
| </attribute> | |
| <attribute name="id" type="string"> | |
| <annotation> | |
| <documentation> | |
| </documentation> | |
| </annotation> | |
| </attribute> | |
| <attribute name="name" type="string"> | |
| <annotation> | |
| <documentation> | |
| </documentation> | |
| <appInfo> | |
| <meta.attribute translatable="true"/> | |
| </appInfo> | |
| </annotation> | |
| </attribute> | |
| </complexType> | |
| </element> | |
| <element name="serializer"> | |
| <annotation> | |
| <documentation> | |
| Defines a serializer. | |
| </documentation> | |
| </annotation> | |
| <complexType> | |
| <attribute name="class" type="string" use="required"> | |
| <annotation> | |
| <documentation> | |
| A class that implements the interface ISerializer to provide an implementation for the serialization of a type. | |
| </documentation> | |
| <appInfo> | |
| <meta.attribute kind="java" basedOn=":org.eclipse.emf.facet.util.emf.core.ISerializer"/> | |
| </appInfo> | |
| </annotation> | |
| </attribute> | |
| </complexType> | |
| </element> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="since"/> | |
| </appInfo> | |
| <documentation> | |
| 0.1.0 | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="examples"/> | |
| </appInfo> | |
| <documentation> | |
| <p> | |
| A serializer can be registered like this: | |
| <pre> | |
| <extension point="org.eclipse.emf.facet.util.emf.core.serialization"> | |
| <serializer class="com.example.MyTypeSerializer"/> | |
| </extension> | |
| </pre> | |
| </p> | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="apiinfo"/> | |
| </appInfo> | |
| <documentation> | |
| <p> | |
| A serializer must implement the interface ISerializer<T> : | |
| <ul> | |
| <li>getType : return the type that can be serialized by this serializer (this is required for loading the class from the correct bundle). | |
| <li>serialize : takes a value and serializes it to a String | |
| <li>deserialize : takes a String and deserializes it back to a value | |
| </ul> | |
| </p> | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="implementation"/> | |
| </appInfo> | |
| <documentation> | |
| <p>See default serializers registered in plug-in "org.eclipse.emf.facet.util.emf.core", defined in package "org.eclipse.emf.facet.util.emf.core.serialization".</p> | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="copyright"/> | |
| </appInfo> | |
| <documentation> | |
| Copyright (c) 2011 Mia-Software and others. | |
| All rights reserved. This program and the accompanying materials | |
| are made available under the terms of the Eclipse Public License v2.0 | |
| which accompanies this distribution, and is available at | |
| http://www.eclipse.org/legal/epl-v20.html | |
| Contributors: | |
| Nicolas Bros (Mia-Software) - initial API and implementation | |
| </documentation> | |
| </annotation> | |
| </schema> |