blob: 1a4eef991f3f5a11960db8e08cf11957c817b4ed [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2004 IBM Corporation and others.
* 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* Created on Aug 20, 2003
*
*/
package org.eclipse.wst.common.internal.emf.resource;
import java.util.List;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.Notifier;
/**
* @author schacher
*/
public interface VariableTranslatorFactory {
/** Returns whether a Translator should be created for the given DOM name */
boolean accepts(String domName);
/** Returns whether a Translator should be created for the given feature */
boolean accepts(Notification notif);
Translator create(Notification notif);
/** Creates a new Translator for the DOM name */
Translator create(String domName);
/** Creates variable translators for an EMF object to be rendered */
List create(Notifier target);
}