blob: b1f7b5af204a8d9040ab73ea359458a56085393c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 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
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.sse.core.internal;
import java.util.List;
import org.eclipse.wst.sse.core.internal.provisional.INodeAdapter;
import org.eclipse.wst.sse.core.internal.provisional.INodeAdapterFactory;
import org.eclipse.wst.sse.core.internal.provisional.INodeNotifier;
public interface PropagatingAdapter extends INodeAdapter {
void addAdaptOnCreateFactory(INodeAdapterFactory factory);
List getAdaptOnCreateFactories();
/**
* This method should be called immediately after adding a factory,
* typically on the document (top level) node, so all nodes can be
* adapted, if needed. This is needed for those occasions when a factory
* is addeded after some nodes may have already been created at the time
* the factory is added.
*/
void initializeForFactory(INodeAdapterFactory factory, INodeNotifier node);
// dmw: should have getFactoryFor?
void release();
}