blob: 090079990404f77095c0a3b9d708b34286712bdd [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;
import java.util.Collection;
public interface INodeNotifier {
static final int ADD = 2;
// Possible values for eventType
static final int CHANGE = 1; // update - non structural
// removed
// when large changes are made to a sub-tree
static final int CONTENT_CHANGED = 5; // sent to the parent notifier
// these strings are for printing, such as during debuging
static final String[] EVENT_TYPE_STRINGS = new String[]{"undefined", "CHANGE", "ADD", "REMOVE", "STRUCUTRED_CHANGED", "CONTENT_CHANGED"}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$
static final int REMOVE = 3;
static final int STRUCTURE_CHANGED = 4; // sent in addition to adds and
// when the child value changed
/**
* Add an adapter of this notifier.
*
* @param o
* com.ibm.etools.emf.notify.INodeAdapter
*/
void addAdapter(INodeAdapter o);
/**
* Return an exisiting adapter of type "type" or if none found create a
* new adapter using a registered adapter factory
*/
INodeAdapter getAdapterFor(Object type);
/**
* Return a read-only Collection of the Adapters to this notifier.
*
* @return com.ibm.etools.emf.notify.INodeAdapter
*/
Collection getAdapters();
/**
* Return an exisiting adapter of type "type" or null if none found
*/
INodeAdapter getExistingAdapter(Object type);
/**
*/
void notify(int eventType, Object changedFeature, Object oldValue, Object newValue, int pos);
/**
* Remove an adapter of this notifier.
*
* @param o
* com.ibm.etools.emf.notify.INodeAdapter
*/
void removeAdapter(INodeAdapter o);
}