blob: ab203d7161624593e230e23b94eb4041f177c21d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 by SAP AG, Walldorf.
* All rights reserved. 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
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* SAP AG - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.ws.jaxws.dom.runtime.persistence;
import org.eclipse.emf.common.notify.Notification;
/**
* This interface should be implemented by classes that intend to do serialization for
* DOM objects.
*
* @author Georgi Vachkov
*/
public interface IAnnotationSerializer
{
public void save(final Notification msg);
}